Disabling Windows Defender on Windows 10 Permanently
March 22nd, 2020Generally speaking, Windows Defender has evolved to a point where I can now (along with common sense) use it as the only antivirus on a Windows system. There are times, however, when it needs to be disabled permanently (for a non-networked machine. Here is a page detailing how to do so.
How to permanently disable Windows Defender Antivirus on Windows 10
Using robocopy to replicate windows filesystems
March 22nd, 2020Similar (though not nearly as complete) as rsync for linux, I often use robocopy to synchronize Windows filesystems. The microsoft documents on robocopy are very complete, however since there are a LOT of options, it is always nice to have a common example of how I use it. Here is one that I use to replicate (or mirror) an entire drive to a folder on another drive:
robocopy C:\ <target drive and folder> /MIR /XJ /R:0 /W:1 /NP /NDL /LOG+:"%cd%\backup_%label%.log" 2>>errors.txt
Securely erasing a hard drive
March 22nd, 2020From time to time, I need to securely erase data from a hard drive. In the past, I've generally used Darik's Boot and Nuke or DBAN however, DBAN does not work on SSD's. Parted Magic, however, does have a utility to securely erase SSD's which is documented in the link below.
rsync examples
March 22nd, 2020Since I'm constantly using rsync and needing to refer to examples, here is a link to rsync examples.
10 Practical Examples of rsync Command in Linux
How to Exclude Files and Directories with Rsync
Also, here is an example of how to duplicate a (live) linux root filesystem
rsync -avP --numeric-ids --exclude='/dev' --exclude='/proc' --exclude='/sys' root@failedharddrivehost:/ /path/to/destination/
Cronicle task scheduler
March 22nd, 2020My (not to be named) company does not allow running jobs through cron. While I understand the reasons behind this, there are times when this restriction creates issues that are difficult to solve using the company approved enterprise task scheduler. In order to get around this, I needed a reliable scheduler that I could use for those special cases without attracting attention (and being shut down). Cronicle is a nice, web based scheduler that I found to fill that need.
