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 →
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 →