Last active
September 20, 2024 02:27
-
-
Save snowyyd/69aafc0c8b71354e5f726ea9887f6654 to your computer and use it in GitHub Desktop.
Clear all Adobe App credentials from Windows Credential Manager
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Inspired on https://community.adobe.com/t5/download-install-discussions/getting-a-long-list-of-quot-adobe-app-info-quot-generic-credentials/td-p/10189222 | |
| # Usage: add this script to your PowerShell profile and run "ClearAdobeCredentials". "Adobe User" credentials will not be removed. | |
| <# Commands explanation: | |
| cmdkey /list > This will list all your saved credentials | |
| Select-String -Pattern "Adobe App" > Show only credentials that match "Adobe App" | |
| -replace "^ *[A-Za-z]+:? (.*)", "`"`$1`"") > Regex that removes " Target:" and add quotes around the credential | |
| % { cmdkey /delete:$_ } > This will run "cmdkey /delete" for each matching credential | |
| #> | |
| function ClearAdobeCredentials { ((cmdkey /list | Select-String -Pattern "Adobe App") -replace "^ *[A-Za-z]+:? (.*)", "`"`$1`"") | % { cmdkey /delete:$_ } } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How do you stop Adobe from creating multiple credentials in credential manager?