Posted On July 1, 2020

Memo of an Advisory Regarding WinRM on a Non-Domain Joined Server

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Memo of an Advisory Regarding WinRM on a Non-Domain Joined Server
# Enable WinRM
winrm quickconfig

<# Sample output
PS C:\Users\Administrator> winrm quickconfig
WinRM service is already running on this machine.
WinRM is not set up to allow remote access to this machine for management.
The following changes must be made:

Configure LocalAccountTokenFilterPolicy to grant administrative rights remotely to local users.

Make these changes [y/n]? y

WinRM has been updated for remote management.

Configured LocalAccountTokenFilterPolicy to grant administrative rights remotely to local users.
#>

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Move C:\Users to Another Volume

Warning: this process will effectively re-route all file pointers from C:\Users\* to another volume. Windows…

PowerShell: Enable ISE

Import-Module ServerManager;Add-WindowsFeature PowerShell-ISE

How To Quickly Search a User in Active Directory by Matching Email

This one liner would do the trick: Get-ADUser -Filter {EmailAddress -eq '[email protected]'} PS C:\Windows\system32> Get-ADUser…