Welcome to My Blog

IT related tech tips since 2006

Login

Blog History

Robocopy exclude Directories

Just trying to copy everything except a couple of directories from a drive to my NAS This is the secret incantation of robocopy when running in a Power Shell Terminal on Windows 11 robocopy d:\ \\mynas\toggen\DATA\ *.* /XD 'D:\$RECYCLE.BIN' 'D:\.Trash-1000' /E /Z From...

Synology DS1522+ Link Aggregation with Unifi UDM

Synology Configuration Plug in as many network cables between your Synology and Unifi Switch as you want to be in the bond. Each Network Interface on the Synology will receive an IP address via DHCP from the UDM. Login to your Synology using one of the IP addresses it...

Read a Windows registry Hive from Linux CLI

Just had to find the operating system of a remote computer so I copied the C:\Windows\System32\config\software.sav (the software hive file is locked by the OS so used the .sav instead) file to Ubuntu 2024 Linux and used hivexget to read the "ProductName" sudo apt-get...