How to enable Remote Desktop using Powershell

microsoft black logo

Last updated on April 16th, 2023 at 11:28 pm

Read Time:47 Second

If you are using Windows 2012 R2 Core or if you just like using Powershell, then you may want to know how to enable Remote Desktop.

To do this, you should go into your Core server where you should see a command box. In here, type in Powershell and press enter. This will open up the Powershell console for you to use.

You should then enter the following three commands in order one after the other:

Enable Remote Desktop

set-ItemProperty -Path 'HKLM:System\CurrentControlSet\Control\Terminal Server'-name "fDenyTSConnections" -Value 0

Allow incoming RDP on Windows Firewall

Enable-NetFirewallRule -DisplayGroup "Remote Desktop"

Enable secure RDP authentication

set-ItemProperty -Path 'HKLM:Syste\mCurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -name "UserAuthentication" -Value 1

Once you have done these three commands, you should then reboot your Core server and once it has come back up, you should now be able to gain Remote Desktop access to it.

Click to rate this post!
[Total: 0 Average: 0]

Leave us a message...

This site uses Akismet to reduce spam. Learn how your comment data is processed.