These: https://amzn.to/3FoGFQQ which I have mounted in my 20x20 dog pen. They light the whole thing up brightly, and I've tested them after about 11 hours and they were still bright. I also have these on my fence lining my driveway. https://amzn.to/3tskRRQ
If you need to configure more than two subnets on a Windows 2008 R2 DHCP server (Or all versions later), doing via the GUI is a painful way to do it. Here's a simple cut and paste script that you can run via netsh that will make the subnets much quicker. Launch netsh from the command line, and paste this in: Replace 10.1.0.50 with your DHCP server, and 10.2.0.224 with your Scope's Network (check the subnet mask and the IP range) Just repeat each section below for each subnet. I find it easy to just use find and replace to make lots of these. Dhcp Server \\10.1.0.50 add scope 10.2.0.224 255.255.255.224 "Name of the Subnet" "Description of Subnet" Dhcp Server \\10.1.0.50 Scope 10.2.0.224 set state 1 Dhcp Server \\10.1.0.50 Scope 10.2.0.224 set delayoffer 0 # =============================================================== # Start Add Ipranges to the Scope 10.2.0.224, Server 10.1.0.50 # =============================...