WinRM
Last updated
Last updated
Windows Remote Management (WinRM) is the Microsoft implementation of the .
Introduced in PowerShell ver 3.0.
The older WMI cmdlets use the DCOM protocol, which is compatible with older versions of Windows but may be blocked by firewall on newer versions of Windows.
The Get-CimInstance
cmdlet uses the WSMan protocol by default. Read .
We can test whether the WinRM service is running on a local or remote computer with .
Interactively get credential with Get-Credential
or use System.Management.Automation.PSCredential
to query information from remote host.