ViciousXUSMC Posted February 23, 2017 Posted February 23, 2017 Under the user account section in the control panel is the "Manage Your Credentials" dialog, and it saves the username and password for various connections, sites, etc. What I need to find is if there is a way to interact with these saved credentials programicaly. Much the way I may need to delete a bad cookie for a website, I need to delete a bad cached credential for a user for a terminal services connection saved under the Windows Credentials secction. It's very hard for me to get the person on the phone, on the computer, and manually fix this issue when it happens (Fire Fighters) so once I know if I can interface to these via registry, com, files, etc I can start working on a script to automate the process.
Moderators JLogan3o13 Posted February 23, 2017 Moderators Posted February 23, 2017 I typically use cmdkey for this: Local $site = "www.msufcu.com" ShellExecute("cmdkey", "/delete:" & $site) ViciousXUSMC 1 "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
ViciousXUSMC Posted February 23, 2017 Author Posted February 23, 2017 Ok, thanks for the heads up I will look into the use for that function and see if it works for what I need it to do.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now