My random rumblings

Something of everything and nothing at all

Robust Copy Example

robocopy "\\tsclient\C\Work\tmp\" C:\Deploy\Tools\ Debug.zip /z /ipg:25 /w:5

robocopy <source dir> <desitination dir> <files>
ipg: inter-packet gap - free bandwidth on slow lines
w: retry time out

Creating CPU usage

I have created the following PowerShell script to simulate a server using CPU

while(1 -eq 1) {for($i=0; $i -lt 5000; $i++) {} [System.Threading.Thread]::Sleep(1)}