Microsoft Windows – Clear RDP Connections History


To totally unlock this section you need to Log-in

In workstations and domains environments, for each successful connection to a remote computer using the RDP (Remote Desktop) client in Windows (mstsc.exe) the system will save remote computer name (or an IP address) and the username used to log on by default.

On the next start, the RDP client program offers the user to select one of the connections that was used previously. The user can select the name of the remote RDP server from the list , and the client automatically fills the user name used for log in.

This is convenient from the end-user perspective, but unsafe from the security point of view, especially when the RDP connection is initiated from a public or untrusted computer.

Information about remote desktop (terminal) sessions is stored individually in the profile of each user, for example a user (assuming an ordinary user, not an administrator) can’t view the RDP connection history of another user.

Microsoft Windows - Clear RDP Connections History

How to delete RDP connections cache from the registry

Information about all RDP connections is stored in the registry of each user. It’s impossible to remove a computer (or computers) from the list of rdp connections using built-in Windows tools, you will have to manually delete some registry keys.

Run the registry editor regedit.exe and navigate to the HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client:

Microsoft Windows - Clear RDP Connections History

You need two registry keys – Default (stores the history of the last 10 rdp connections) and Servers (contains the list of all rdp servers and usernames used previously to log in).

Expand registry key HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Default which contains the list of 10 IP addresses or DNS names of remote rdp servers that have been used recently (MRU – Most Recently Used). The name (or the IP address) of the remote desktop server is kept in the value of the key MRU*.

To clear the history of the most recent RDP connections, select all values with the names of MRU0-MRU9, right-click and select Delete.

Microsoft Windows - Clear RDP Connections History

Next, expand HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Servers. It contains the list of all RDC (remote desktop client) connections that have ever been established from this computer.

If you expand the node with the name (or ip address) of any server, the UsernameHint key (hints the user name) shows the name of the user connected through RDP.
To clear the history of all RDP connections and saved user names, you must clean the contents of Servers registry key.

Since it’s impossible to select all the registry keys at once, it’s easier to delete the entire Servers key and then recreate it manually.

Microsoft Windows - Clear RDP Connections History

In addition to the specified registry keys, you need to delete the default rdp connection file (which contains information about the latest rdp session) stored in Default.rdp (this file is a hidden file located in Documents directory).

NOTE: the described method to clear the history of terminal rdp connections works on all versions of Windows XP, Vista, Windows 7, Windows 8 and Windows 10 and server platforms like Windows Server 2003/2008/2012/2016.

How to clear the RDP connection history using a script

Above we have discussed how to clear the remote desktop history manually through the registry. However, doing it manually (especially on multiple computers) is time consuming. Therefore, we offer a small script (BAT file) that allows to automatically clear the history.

To automate the rdp history cleanup, you can put this script in the startup or to deploy it to computers by using a group policy.

@echo off
reg delete "HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Default" /va /f
reg delete "HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Servers" /f
reg add "HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Servers"
cd %userprofile%\documents\
attrib Default.rdp -s -h
del Default.rdp

NOTE: in some cases, the Documents folder can be moved from the standard directory C:\users\%username%\documents (for example, on another partition due to lack of space on the system drive). In this case, you will have to change the path to the directory or manually find the file Default.rdp.

Let’s consider all the actions of the script:

  • Disable the output of the information to the console.
  • Delete all the values in the registry key HKCU\Software\Microsoft\Terminal Server Client\Default (clear the list of recent rdp connections).
  • Delete the entire contents from HKCU\Software\Microsoft\Terminal Server Client\Servers (clears the rdp connection history and the saved user names).
  • Recreate the previously deleted registry key.
  • Go to the directory with the Default.rdp file.
  • Change the Default.rdp file attributes, by default it is Hidden and System.
  • Delete the file Default.rdp file.

In addition, you can clear the history of RDP connections using the following PowerShell script:

Get-ChildItem "HKCU:\Software\Microsoft\Terminal Server Client" -Recurse | Remove-ItemProperty -Name UsernameHint -Ea 0
Remove-Item -Path 'HKCU:\Software\Microsoft\Terminal Server Client\servers' -Recurse 2>&1 | Out-Null
Remove-ItemProperty -Path 'HKCU:\Software\Microsoft\Terminal Server Client\Default' 'MR*' 2>&1 | Out-Null
$docs = [environment]::getfolderpath("mydocuments") + '\Default.rdp'
remove-item $docs -Force 2>&1 | Out-Null

NOTE: By the way, the feature of the RDP history cleanup is built into many system and registry “cleaners”, such as, CCleaner, etc.
In case if you want to completely disable the history of remote desktop, you can try to prevent everyone from writing to these registry keys (but you should understand that this is an unsupported configuration).

Clearing cached RDP credentials

If when establishing a new remote RDP connection, before entering the password, the user checks an option Remember Me, then the username and password will be saved in the system Credential Manager. The next time you connect to the same computer, the RDP client automatically uses the previously saved password for authorization on the remote desktop.

Microsoft Windows - Clear RDP Connections History

You can remove this password directly from the client’s mstsc.exe window. Select the same connection from the list of connections, and click on the Delete button. Then confirm deletion of the saved credentials.

Microsoft Windows - Clear RDP Connections History

Alternatively, you can delete the saved password directly from the Windows Credential Manager. Go to the Control Panel\User Accounts\Credential Manager section. Select Manage Windows Credentials and in the list of saved passwords find the computer name (in the following format TERMSRV/192.168.1.100). Expand the found item and click the Remove button.

Microsoft Windows - Clear RDP Connections History

In a domain environment, you can disable saving passwords for RDP connections by using the special policy Network access: Do not allow storage of passwords and credentials for network authentication.