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
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)}