My random rumblings

Something of everything and nothing at all

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