forked from OCram85/PSCredentialStore
fixed another var name typo
This commit is contained in:
parent
1773f1fc06
commit
680f37c00e
@ -94,13 +94,13 @@ function Set-CredentialStoreItem {
|
|||||||
if ($Credential.UserName) {
|
if ($Credential.UserName) {
|
||||||
if ($CSContent.Type -eq "Shared") {
|
if ($CSContent.Type -eq "Shared") {
|
||||||
$Key = Get-ChallengeFile
|
$Key = Get-ChallengeFile
|
||||||
$encypted = ConvertFrom-SecureString -SecureString $Creds.Password -Key $Key
|
$encypted = ConvertFrom-SecureString -SecureString $Credential.Password -Key $Key
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$encypted = ConvertFrom-SecureString -SecureString $Creds.Password
|
$encypted = ConvertFrom-SecureString -SecureString $Credential.Password
|
||||||
}
|
}
|
||||||
if (Get-Member -InputObject $CSContent -Name $CredentialName -Membertype Properties) {
|
if (Get-Member -InputObject $CSContent -Name $CredentialName -Membertype Properties) {
|
||||||
$CSContent.$CredentialName.User = $Creds.UserName
|
$CSContent.$CredentialName.User = $Credential.UserName
|
||||||
$CSContent.$CredentialName.Password = $encypted
|
$CSContent.$CredentialName.Password = $encypted
|
||||||
$CSContent.$CredentialName.Creation = $CurrentDate
|
$CSContent.$CredentialName.Creation = $CurrentDate
|
||||||
ConvertTo-Json -InputObject $CSContent | Out-File -FilePath $Path
|
ConvertTo-Json -InputObject $CSContent | Out-File -FilePath $Path
|
||||||
|
Loading…
Reference in New Issue
Block a user