Linux stress testing Get link Facebook X Pinterest Email Other Apps May 19, 2020 sudo apt-get install stress sudo stress --cpu 4 --io 4 --timeout 30 Read more
Powershell to retrieve networked computer's installed programs Get link Facebook X Pinterest Email Other Apps May 19, 2020 Get-CimInstance -ComputerName PC-NAME -ClassName win32_product -ErrorAction SilentlyContinue| Select-Object PSComputerName, Name, PackageName, InstallDate | Out-GridView Read more