Contact Info

Crumbtrail

ActiveXperts.com » Support » Network Monitor » KB Article

Knowledge Base FAQ Item #7260100

 

Q7260100: How do I verify WinRM only (without WMI) on a (remote) Windows machine?

If you just want to check if WinRM is enabled or disabled without checking WMI, use the following Powershell command:

Test-WSMan -ComputerName MYSERVER01 -Authentication default

OR, if you want to use credentials other than the one you logged in with:

Test-WSMan -ComputerName MYSERVER01 -Credential "MYDOMAIN01\Administrator" -Authentication default
(viewed: 746)