Link to home
Start Free TrialLog in
Avatar of CMilne
CMilne

asked on

Credential Manager - Change Password

Hello,
In Windows 7's Credential Manager, we added an RDP server with my credentials. It works. If I change my password on the Domain, it doesn't reciprocate to the Credential Manager. Does anyone know of a way to make this happen (via script, gpo, etc.)? Thanks.
ASKER CERTIFIED SOLUTION
Avatar of Jackie Man
Jackie Man
Flag of Hong Kong image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
If still no go, you may need to change the script as follows:-

 
attrib -h %USERPROFILE%\Documents\Default.rdp
del %USERPROFILE%\Documents\Default.rdp 
cmdkey /add:TERMSRV/[IP address of terminal server] /user:[Doamin User Name] /pass:[Password]

Open in new window


The script above will delete the existing default.rdp file and the system will create a new default.rdp file when you start a new rdp session.
The information inside the Credential Manager is stored locally in your Windows 7 and I do not think that any server-side script or GPO can update the password inside it.
Avatar of CMilne
CMilne

ASKER

This worked