src/Get-CsDefaultStore.ps1
1 2 3 4 5 6 7 8 9 10 11 |
<# .SYNOPSIS Gets the path to the default CredentialStore .DESCRIPTION The Get-CsDefaultStore cmdlet gets the path to the default CredentialStore .LINK https://github.com/fodonnel/CredentialStore #> function Get-CsDefaultStore { return $Script:DefaultCredentialStore } |