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

PowerShell: Enable TLS 1.2 on Windows

function enableTls12{ try{ $null=New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server' -Force $null=New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client' -Force $null=New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server'…

Print Server Admin Tasks – 2006 Notes

How to resolve an issue with a print job that freezes upon "cancel" Preliminary: the…

Problem Solving Exercise: Auto Manufacturing Case

Sample Answer 1. Produce a problem statement:We are investigating the root cause of production delays…