Retrieve Secure Store Credentials

Hi!

The other day I had the need to find the username/password that was saved into a secure store group credential.  After some research I was able to create a script that did the job:

$SecureStoreProvider=[Microsoft.Office.SecureStoreService.Server.SecureStoreProviderFactory]::Create()
$site = Get-SPSite -Identity $(Get-SPWebApplication -IncludeCentralAdministration | ?{ $_.IsAdministrationWebApplication}).Url
$SecureStoreProvider.Context = Get-SPServiceContext -Site ($site)
$SecureStoreProvider.GetTargetApplications() |  ForEach-Object {
    Write-Host $_.Name
    try {
        $SecureStoreProvider.GetCredentials($_.ApplicationId) | ForEach-Object {
            $Credential = [Runtime.InteropServices.Marshal]::PtrToStringAuto([Runtime.InteropServices.Marshal]::SecureStringToBSTR($_.Credential))
            Write-Host "`t$($_.CredentialType): $($Credential)"
        }
    } catch  {
        Write-Host "`t$($_)"  -ForegroundColor yellow
    }
}

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s