Service Status Check

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

Get-WmiObject -class win32_service -computername (Get-Content C:\temp\server.

txt) -
ErrorAction SilentlyContinue -filter "name LIKE 'AeXNSClient'" | select-object -
property name, displayname, state, startmode, pscomputername | export-csv "c:\temp\
service_status.csv" -notypeinformation -append

You might also like