Microsoft PowerShell Secret Management - Preview 3

Поділитися
Вставка
  • Опубліковано 21 вер 2020
  • Join me as I take a look at the newly released Preview 3 of the Microsoft PowerShell Secret Management Module!
    Microsoft Resources:
    Blog Post - devblogs.microsoft.com/powers...
    Design Changes - devblogs.microsoft.com/powers...
    Secret Management GitHub - github.com/PowerShell/SecretM...
    Secret Store Github - github.com/PowerShell/SecretS...
    Lastpass SecretManagement Extension - github.com/TylerLeonhardt/Sec...
  • Навчання та стиль

КОМЕНТАРІ • 2

  • @PACOME1200
    @PACOME1200 2 роки тому

    Hi,
    How can i secure my main Password for the Vault to get it unlock in a script when the type of the Password is ''PScredential'' and not a Securestring.
    i tryed the command Unlock-SecretStore by i get this error:
    Unlock-SecretStore: Cannot bind parameter 'Password'. Cannot convert the "Test" value of type "System.String" to type "System.Security.SecureString".
    "Test" is here my Password.
    Thank you.

    • @MattAllford
      @MattAllford  2 роки тому

      Hi there. Sorry about the delay, just catching up on some comments.
      I think you might need to store the vault password using a method like a secure XML file, and then import that as a credential in your script that you can then pass to the cmdlet to unlock the vault.
      Does that make sense?