1

EDIT

I figured out the problem. Turns out that tab does not show up if you're not logged in as Administrator. Thanks for the help regardless.

I just installed Windows Server 2003 R2 Standard x64 Edition Service Pack 2 on a virtual host. I'm trying to enable RDP, but in the System Properties window there is no tab for Remote like there is with our other servers with the same OS. Does anyone know why and how to fix it?

Daniel Somers
  • 11
  • 1
  • 4

5 Answers5

2

In your Group Policy Object (GPO), go to Computer Configuration --> Policies ---> Windows Components --> Remote Desktop Services --> Remote Desktop Session Host --> Connections --> Allow users to connect remotely using Remote Desktop Services and set the option to Enabled.

This setting applies to Windows XP, Windows Vista, Windows 7, Windows Server 2003, Windows Server 2003 R2, Windows Server 2008, and Windows Server 2008 R2.

HopelessN00b
  • 53,385
  • 32
  • 133
  • 208
1

Click Start --> Run and type this command:

regsvr32 %systemroot%\system32\remotepg.dll

You can also try unregister this dll first, then re-register it once again.

regsvr32 /u %systemroot%\system32\remotepg.dll

then

regsvr32 %systemroot%\system32\remotepg.dll

HopelessN00b
  • 53,385
  • 32
  • 133
  • 208
Volodymyr Molodets
  • 2,404
  • 9
  • 35
  • 52
1

I don't know why your 'remote' tab is not there, but you can enable RDP using the command line:

reg.exe add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f

If you have the firewall running, make sure to allow RDP

Peter Hahndorf
  • 13,763
  • 3
  • 37
  • 58
0

I figured out the problem. Turns out that tab does not show up if you're not logged in as Administrator. Thanks for the help regardless.

Daniel Somers
  • 11
  • 1
  • 4
0

I went through all the different things to check online and it turned out that on multiple servers, the fDenyTSConnections was a REG_SZ and not a REG_DWORD.

I deleted the REG_SZ and made a new REG_DWORD with the 0 value, restarted, and the Remote tab was back.

Ben L
  • 1