Two updated preview releases are now available on the PowerShell Gallery:
Before installing these modules please uninstall the current preview versions of the modules and restart your PowerShell session.
To install these updates run the following commands:
Uninstall-Module Microsoft.PowerShell.SecretManagement -Force
Uninstall-Module Microsoft.PowerShell.SecretStore -Force
#Restart your PowerShell session
Install-Module -Name Microsoft.PowerShell.SecretManagement -AllowPrerelease -Repository PSGallery
Install-Module -Name Microsoft.PowerShell.SecretStore -AllowPrerelease -Repository PSGallery
Register-SecretVault -Name SecretStore -ModuleName Microsoft.PowerShell.SecretStore -DefaultVault -AllowClobber
SecretManagement Preview 5 Updates
This update to SecretManagement improves the usability of the module by adding name completers, and adding functionality to Unregister-SecretVault
for vault extension authors as well a a few other changes. Read the full list of changes below:
Get-Secret
-Name
parameter now accepts arguments with wild card characters as literals (Issue #67)- The
Verbose
parameter switch is now passed to extension vault module functions as anAdditionalParameters
name/value pair (Issue #66) Get-SecretVault
-Name
parameter now takes astring[]
type argument (Issue #59)Test-SecretVault
-Name
parameter now takes astring[]
type argument and accepts wild card characters (Issue #56)Register-SecretVault
now has a-PassThru
parameter to return information on the secret vault just registered- When an extension vault is unregistered and if the vault provides a
Unregister-SecretVault
function, that extension vault function will be called before the extension vault is unregistered (Issue #60) - Vault name and Secret name completers have been added to the cmdlets (Issue #35)
SecretStore Preview 3 Updates
This update to SecretStore includes updates to the cmdlet interface based on user feedback and desire to optimize the usability of the vault. Read the full list of changes below:
Set-SecretStoreConfiguration
now has a-PassThru
parameter to write the store configuration object to the pipeline, and no longer writes the configuration object by default (Issue #25).- A
-PasswordTimeout
value of zero now allows the provided password to be used only once (Issue #30). - When setting a password, an empty password is no longer accepted (Issue #31).
Set-SecretStorePassword
now has a parameter set that takes old/new password arguments, to allow setting password by automation (Issue #26).Reset-SecretStore
now has a new-Password
and-PassThru
parameter.Reset-SecretStore
will now prompt immediately for a new password, if password authentication is selected and prompt interaction is allowed (Issue #34)
Finding other available extension Vaults
To find other SecretManagement extension vault modules, search the PowerShell Gallery for the “SecretManagement” tag. Some community vault extensions that are available:
Thank you to everyone who has created vaults thus far!
Feedback and Support
Community feedback has been essential to the iterative development of these modules. Thank you to everyone who has contributed issues, and feedback thus far! As we approach General Availability, targeted for later this year, for these modules now is the time to test the modules against your scenarios to request changes (especially breaking ones) and discover bugs. To file issues or get support for the SecretManagement interface or vault development experience please use the SecretManagement repository. For issues which pertain specifically to the SecretStore and its cmdlet interface please use the SecretStore repository.
Sydney Smith PowerShell Team
The Register-SecretVault command results in this error for me:
The property ‘Path’ cannot be found on this object. Verify that the property exists.
At line:1 char:23
+ … m([string] $path) (Resolve-Path -Path $path -ErrorAction Ignore).Path
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [], PropertyNotFoundException
+ FullyQualifiedErrorId : PropertyNotFoundStrict
(For both PS 5.1 and PS core 7.1)
Trying to follow those instructions but
Unable to find dependent module(s) (Microsoft.PowerShell.SecretManagement) when installing SecretStore module
We typically see that error when SecretStore is installed using the -Force switch, any chance you have Force in you $PSDefaultParametersValues ?
I was able to install with
Install-Module -Name Microsoft.PowerShell.SecretStore -AllowPrerelease -Scope AllUsers -confirm:$false -Verbose -force:$false
Thanks for pointing me in the right direction
$PSDefaultParameterValues shows nothing. I do normally set those but this is a very vanilla install.