What you will achieve
Turn off Remote Desktop when you do not need it, closing a common attack surface without breaking local access to the PC.
1) Disable via Settings (Windows 11)
- Open Settings → System → Remote Desktop.
- Toggle Remote Desktop to Off.
- Confirm the change — local login and screen sharing apps unrelated to RDP are unaffected.
2) Disable via System Properties (all editions)
- Press Win + R, type
sysdm.cpl, press Enter. - Open the Remote tab.
- Select Don't allow remote connections to this computer.
- Click OK and reboot if the service was actively in use.
3) Stop and disable the service
Admin PowerShell:
Set-Service TermService -StartupType Disabled
Stop-Service TermService -Force
Get-Service TermService | Select-Object Name, Status, StartType
4) Block RDP at the firewall (optional extra layer)
- Open
wf.msc→ Inbound Rules. - Disable Remote Desktop - User Mode (TCP-In) rules on Public and Private profiles if RDP must never be used.
5) Confirm RDP is off remotely (audit)
Get-ItemProperty "HKLM:\SYSTEM\CurrentControlSet\Control\Terminal Server" -Name fDenyTSConnections
Value 1 means RDP disabled.
6) Alternative remote tools
- Quick Assist, TeamViewer, or Splunk SOAR-approved tools may remain enabled — disabling RDP does not block those.
- Audit Settings → Apps → Installed apps for remote tools you did not install.
7) Group Policy disable (Pro)
- Computer Configuration → Administrative Templates → Windows Components → Remote Desktop Services → Remote Desktop Session Host → Connections → Allow users to connect remotely → Disabled.
8) Verify no RDP listeners
netstat -an | findstr ":3389"
No LISTENING on 3389 confirms RDP service is off.
9) Disable Remote Assistance too
sysdm.cpl→ Remote tab → uncheck Allow Remote Assistance connections.- Remote Assistance is separate from RDP but still inbound desktop access.
Verification checklist
Port scan from another LAN machine: 3389 closed. Attempt mstsc connection — should fail immediately. Confirm Remote Assistance also disabled in sysdm.cpl.
- Reboot once after changes that affect services, drivers, or firmware.
- Confirm the original problem is resolved under normal daily use, not only immediately after the fix.
- Note date, Windows version (Settings → System → About), and what changed in your personal runbook for next time.
Quick reference paths
- Settings → System → Remote Desktop
- sysdm.cpl → Remote tab
- Services.msc → Remote Desktop Services
- Admin tools: press Win + X for Terminal (Admin), Device Manager, and Computer Management.
On workstations that never need inbound remote access, combine disabled RDP with disabled Remote Assistance and blocked 3389 at the router — defence in depth beats a single toggle.