PowerShell - Remote Management
You want to list all services that are currently running on a remote computer named 'Server01' using CIM cmdlets. Which command is correct?
State with value 'Running' correctly filters running services in Win32_Service.Get-CimInstance with -ComputerName is modern and correct. Filtering with Where-Object { $_.State -eq 'Running' } matches running services.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions