Answers for "get-wmiobject win32_service -computer all computer"

0

get-wmiobject win32_service -computer all computer

PS C:\> get-wmiobject win32_service -computername (get-content Computers.txt) -filter "Name='dhcp'" |
  select-object __SERVER,Name,DisplayName,State |
  export-csv Results.csv -notypeinformation
Posted by: Guest on June-23-2020

Browse Popular Code Answers by Language