Windows cannot be installed to this disk 0x80300001 in Windows 7 Setup

When installing Windows 7 onto Gigabyte SATA RAID, I got two errors: Windows cannot be installed to this disk 0x80300001 Windows is unable to install to the selected location. Error: 0x80300001 Windows Setup sees the RAID volume, and one of the errors appears when you create partition manually. The error is shown after you have …

VMware Guest OS: The trust relationship between this workstation and the primary domain failed

VMware Guest OS: The trust relationship between this workstation and the primary domain failed. I received this errors two times on a row for two different computers. I am not 100% sure, but from reading the web I came to conclusion that this error is encountered when: SID gets cloned when computer gets cloned using …

How to delete all folders in current directory

How to delete all folders in current directory using command line (cmd.exe) or batch files? How to delete all empty directories in current folder: FOR /D %f IN (*.*) DO RD “%f” How to delete all directories / folders in current directory / folder: FOR /D %f IN (*.*) DO RD “%f” /S /Q If …