windows:client_os:rdp_w8

no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


windows:client_os:rdp_w8 [2022/03/14 20:22] (current) – created - external edit 127.0.0.1
Line 1: Line 1:
 +====== Enable RDP from powershell on windows 8/11 ====== 
 +To enable remote desktop connections under Windows 8, just start powershell and enter these commands: 
 +<code powershell Windows 8> 
 +(Get-WmiObject win32_TerminalServiceSetting -Namespace root\\cimv2\\TerminalServices).SetAllowTSConnections(1) 
 +import-module netsecurity -ea stop ; Get-NetFirewallRule | ? {$_.displayname -like \"remote desktop*\"} | Set-NetFirewallRule -enabled true 
 +</code> 
 +<code powershell Windows 11> 
 +Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server' -name "fDenyTSConnections" -value 0  
 +Enable-NetFirewallRule -DisplayGroup "Remote Desktop" 
 +</code> 
 +The commands can be ran remotely if you have [[http://www.bitvise.com/winsshd|SSH]] server installed - like i did :)
  • windows/client_os/rdp_w8.txt
  • Last modified: 2022/03/14 20:22
  • by 127.0.0.1