Bug fix: network interfaces team.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
# Enable Remote Desktop
|
||||
Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server" -Name "fDenyTSConnections" -Value 0
|
||||
|
||||
# Enable Remote Desktop through Windows Firewall
|
||||
Enable-NetFirewallRule -DisplayGroup "Remote Desktop"
|
||||
|
||||
# Allow "Everyone" group to connect
|
||||
$rdpAccessGroup = "Remote Desktop Users"
|
||||
Add-LocalGroupMember -Group $rdpAccessGroup -Member "Everyone"
|
||||
Reference in New Issue
Block a user