Posts

Showing posts from May, 2020

Linux stress testing

sudo apt-get install stress sudo stress --cpu 4 --io 4 --timeout 30

Powershell to retrieve networked computer's installed programs

Get-CimInstance -ComputerName PC-NAME -ClassName win32_product -ErrorAction SilentlyContinue| Select-Object PSComputerName, Name, PackageName, InstallDate | Out-GridView