I cannot get access to my windows 7 via RDP. No obvious cause, no diagnostics. How to proceed?

0

I remember that When I set up my Windows 7 Professional configuration, I blocked RDP access (if I remember correctly I said "no" to a question coming probably from firewall) when inbound RDP session was started the first time. Then I tried to unblock it but without any result. I have one Remote Desktop rule in the firewall Inbound Rules, specifying TCP protocol. I have no difficulties with outbound connections. The router isn't the source of the problem because even in direct LAN connection the effect is the same. What to do?

witrak

Posted 2019-01-09T07:41:29.063

Reputation: 1

What version of Win7 are you using? – JohnnyVegas – 2019-01-09T08:03:51.080

Professional with all appropriate service packs. – witrak – 2019-01-09T09:29:20.737

add two rules - incoming and outgoing to port 3389 tcp and udp. 4 rules in total, then try it again. – JohnnyVegas – 2019-01-09T19:11:08.740

Answers

0

Check if the remote desktop settings allow connection from remote:

  1. right click on computer -> remote settings -> check which option is enabled
    • it should be "allow remote connection....."
  2. Check the firewall rules in which zone the port 3389 is allowed in inbound connection

  3. Check if you computer had an IPv6 address, if yes probably your network interface are set to public zone.

To enable it with powershell (run as administrator):

  1. Enable Remote Desktop Connection:

    Set-ItemProperty ‘HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\‘ -Name “fDenyTSConnections” -Value 0

  2. Enable Network Level Authentication (this permit connection only from client with NLA)

    Set-ItemProperty ‘HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp\‘ -Name “UserAuthentication” -Value 1

  3. Enable the connection trough the firewall:

    Enable-NetFirewallRule -DisplayGroup “Remote Desktop”

the above steps should enable and permit RDP connection to your computer

AtomiX84

Posted 2019-01-09T07:41:29.063

Reputation: 637