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 } }