windows

Windows CMD Command to Display All IP Addresses

for /L %i in (0,1,255) do ping -n 1 -w 250 192.168.1.%i>>ipaddress.txt The above scans all the IP address on the subnet 192.168.1.XXX and saves them to a file named ipaddress.txt. Thanks to Clifford on the thread here for pulling this together. I often remote desktop into my mining PC. However my ATT router is spotty at best so there are times I failover to a backup network which renews my PCs IP address according to its DHCP.
How to install Windows Subsystem for Linux to use Rsync with Hugo on Windows 10 - Part 1

How to install Windows Subsystem for Linux to use Rsync with Hugo on Windows 10 - Part 1

I am a huge fan of the Hugo framework for generating static sites. When building with Hugo, I wanted to be able to deploy my site using rsync. Rysnc allows for fast, one click file transfers to my server and can be configured to transfer only the new or changed files. Unfortunately, Windows does not support this out of the box. BUT, the Windows Subsystem for Linux (WSL) would allow me to access the rysnc function without having to dual boot.