Skip to content

Instantly share code, notes, and snippets.

View lyoungstratus's full-sized avatar

lyoungstratus

View GitHub Profile
@cmcginty
cmcginty / powershell-non-domain-remoting.md
Last active March 26, 2024 16:16
Windows Powershell Remoting into Non-Domain Joined System

Powershell Remoting to a Non-Domain Host

  1. From an admin shell, enable PS remoting on the machine you wish to access:
New-ItemProperty -Name LocalAccountTokenFilterPolicy `
  -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System `
  -PropertyType DWord -Value 1

Enable-PsRemoting -Force