The HP Z8 G4 does support NVMe RAID on Windows boot drives using the Intel VROC upgrade.
This is just a quick set of notes. A full review will be written and maybe even a YouTube video with dual CPUs and 4 drives.
What you need HP Z8 Workstation At least 2 matching NVMe SSDs on the internal HP NVMe card slot. Part #933576-001 The Intel Premium VROC SKU#VROCPREMMOD Create a Windows 10 Restore flash drive using the HP Cloud Recovery Client tool.
Read more →
Migration Assistant Robust Copy Did you know that during a migration of data using the Apple Migration Assistant that you can do some limited switching between wired and wireless connections without abandoning the transfer you already have in progress? While doing a recent transfer I noticed the Migration Assistant said “Connect an Ethernet cable to transfer data faster”, so I did. Right in the middle of a 100GB data transfer! Guess what?
Read more →
Batch loop example to run every exe file in a folder with parameters (-z -m). Originally adapted for running a folder full of windows update exe files.
for %%i in (*.exe) do call %%i -z -m
Read more →
Set a variable to the current Date and Time in Batch file:
for /F "tokens=2,3,4 delims=/ " %%i in ('date/t') do set d=%%k%%i%%j for /F "tokens=1,2,3 delims=:. " %%i in ('time/t') do set t=%%i%%j%%k echo The date is %d% and the time is %t%
Read more →