PowerShell - System Administration
You want to stop all running instances of 'chrome' safely but only if they use more than 100 MB of memory. Which PowerShell command achieves this?
WorkingSet property shows memory usage in bytes. 100 MB equals 100,000,000 bytes approximately.Stop-Process. Get-Process -Name chrome | Where-Object { $_.WorkingSet -gt 100MB } | Stop-Process uses '100MB' which is invalid syntax. Options C and D use non-existent parameters.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions