Remote Desktop Connection Manager Delete Profile

0

I'm using Windows Remote Desktop Manager 2.7. I have some profile saved as 'Global' profiles. Somehow, today, I have managed to save a 'File' profile, which does not appear in the 'Profile Managment' tab of the 'Default Settings Group Properties', but DOES appear as a profile in all of the server properties.

Searching for a method to remove this profile gives me ways to delete credentials that have been used to log into the specific machine, remove the 'Global' profiles, or simply remove credentials from credential manager, none of which display this 'File' profile.

The only result that comes close to answering the question is this one, which specifies removing the credentials from the credentialsProfiles.rdg file where they're stored. However, I cannot find this file on Windows 10 (Even with hidden folders displayed).

How do I deleted a 'File' profile? Alternatively, where in Windows 10 is credentialsProfiles.rdg stored for RDCMan?

Thanks,

HDCerberus

Posted 2019-06-22T07:35:57.547

Reputation: 103

Answers

2

You can open the *.rdg file in any text editor and delete everything between the first "credentialsProfiles" til the end delimiter "/credentialsProfiles"

<credentialsProfiles>
  <credentialsProfile inherit="None">
        <profileName scope="Local">*ExampleDomain*\*ExampleUser*</profileName>
        <userName>*ExampleUser*</userName>
        <password>*ExamplePass*</password>
        <domain>*ExampleDomain*</domain>
  </credentialsProfile>
  <credentialsProfile inherit="None">
    ...
  </credentialsProfile>
</credentialsProfiles>

Delete any credentialsProfile blocks and the final format will be:

<credentialsProfiles />

at the beginning of the file.

It is required by RDCMan 2.7 that it has the "credentialsProfiles" section at the start of the *.RDG file.

beingmerry

Posted 2019-06-22T07:35:57.547

Reputation: 56

1

"File scope is broader and profiles with this scope can be used in the whole .rdg file. They are referenced by name, with the profile definition stored inside the credentialsProfiles tag at the beginning of the .rdg file."

https://lowleveldesign.org/2016/05/23/incorrect-password-in-remote-desktop-connections-manager-with-some-dpapi-insights/

While this is what you mentioned above I don't believe there is any way around your issue unless you remember where you housed the .RDG file originally.

Jacob Gilmore

Posted 2019-06-22T07:35:57.547

Reputation: 11