PowerShell Plugin
Utilize PowerShell's Secret Management module to access secrets with the Keeper Secrets Manager PowerShell Plugin

Features
Retrieve secrets from the Keeper Vault to use in PowerShell
Integrate Keeper vault with PowerShell Secrets Manager
Update secret values in the Keeper Vault from PowerShell
Get files from the Keeper vault
Prerequisites
This page documents the Secrets Manager PowerShell integration. In order to utilize this integration, you will need:
Secrets Manager requires PowerShell version 6 or greater. Microsoft distributes PowerShell version 6+ as a separate application from versions 5 and earlier.
See Microsoft's Documentation for installation details
PowerShell Version 6.0 or later
See Microsoft's Documentation for installation details
Keeper Secrets Manager access (See the Quick Start Guide for more details)
Secrets Manager addon enabled for your Keeper account
Membership in a Role with the Secrets Manager enforcement policy enabled
A Keeper Secrets Manager Application with secrets shared to it
See the Quick Start Guide for instructions on creating an Application
About
The Keeper Secrets Manager PowerShell plugin utilizes Microsoft PowerShell's Secret Management module to inject secrets from the Keeper Vault into your PowerShell scripts.
The Keeper Secrets Manager extension can be easily configured added as a secret vault into new or existing PowerShell Secret Management workflows.
For more information about PowerShell Secret Management, see the PowerShell docs on their GitHub page.
Installation
1. Install PowerShell Secret Management Module
Keeper Secrets Manager uses the Microsoft.PowerShell.SecretManagement module to manage secrets in PowerShell.
Install using PowerShell:
Install-Module -Name Microsoft.PowerShell.SecretManagementSee PowerShell Gallery for other installation options
2. Install Keeper Secrets Manager for PowerShell
Install the Keeper Secrets Manager PowerShell extension from the PowerShell Gallery.
Install-Module -Name SecretManagement.KeeperSee the PowerShell Gallery page for more installation options, or find the source code in GitHub.
3. Install a PowerShell Secret Management Extension
The Keeper Secrets Manager PowerShell plugin will need a secret management extension to store the plugin configuration locally to your machine.
Keeper recommends Microsoft.Powershell.SecretStore or SecretManagement.KeyChain
Install-Module -Name Microsoft.Powershell.SecretStoreInstall-Module -Name SecretManagement.KeyChain4. Register a Vault to use for Configuration Storage
Register a secret vault for the previously installed secret management extension, so that the Keeper Secrets Manager plugin configuration can be stored.
Register-SecretVault -Name LocalStore -ModuleName Microsoft.Powershell.SecretStoreRegister-SecretVault -Name LocalStore -ModuleName SecretManagement.KeyChainThe name of this vault will be used to register the Keeper extension. We used LocalStore in this example.
The Secret Management extension that you use for local storage may ask you to create a password for securely accessing the local vault.
Depending on your system settings, you may need to allow PowerShell to trust external modules. To do this, run the command:
set-executionpolicy remotesigned
5. Register the Keeper Vault
Register the Keeper Secrets Manager Vault using the local vault registered above to save your credentials, and a one time token to connect to Keeper.
Replace 'XXX' below with a one time token.
Register-KeeperVault -Name Keeper -LocalVaultName LocalStore -OneTimeToken XXX Alternatively you can use already generated config - replace 'XXX' below with a base64 encoded config.
Register-KeeperVault -Name Keeper -LocalVaultName LocalStore -Config XXX 6. Set Keeper Vault as Default Secret Storage (Optional)
Set the Keeper vault you just added as the default secret storage. This will tell the PowerShell SecretsManagement module to use your Keeper vault when getting and setting secrets.
Set-SecretVaultDefault KeeperThis step is optional, but if you choose not to do it, you may receive secrets from your default vault if they have the same name, and you will need to add -Vault <keeper vault name> (e.g. -Vault keeper ) to Get-Secret, Set-Secret commands
The Keeper Secrets Manager PowerShell Plugin is now ready to be used
Source Code
Find the Keeper Secrets Manager PowerShell Plugin source code in the GitHub repository.
Usage
Find descriptions and examples of the most common usage of the Keeper Secrets Manager PowerShell plugin below.
For more information about PowerShell Secret Management commands, see the PowerShell docs on their GitHub page.
Starting with version 16.6.6 Get/Set commands allow use of \ as and escape character for dots in title. Use escape character only if there's dot in title, and escape both . and \ (ex. \., \\)
Listing Secrets
Run the following PowerShell command to see a list of secrets from Keeper
Get-SecretInfo -Vault <KEEPER VAULT NAME>PS> Get-SecretInfo -Vault Keeper
Name Type VaultName
---- ---- ---------
bf3dg-99-Juh3feswgtFxg Home SSH Hashtable Keeper
_3zT0HvBtRdYzKTMw1IySA ACME Login Hashtable KeeperUse the name set for your Keeper secrets vault, in the examples above we use Keeper.
The secrets shown are any records shared with the Secrets Manager Application. The Name column displays each record's UID and title.
Getting a Single Secret
Get information and values of a single secret
Get-Secret -Vault <KEEPER VAULT NAME> <RECORD NAME or UID> -AsPlainTextPS> Get-Secret -Vault Keeper "ACME Login" -AsPlainText
Name Value
---- -----
login user2
password 123
Files {file1.json, file2.zip}Wrap the record name in quotation marks when there is a space in it.
Get a Value From a Secret
Utilize Keeper Dot Notation to identify a field to access. Note that you do not need the 'keeper://' prefix.
Get-Secret -Vault <KEEPER VAULT NAME> <RECORD NAME OR UID>.<FIELD> -AsPlainTextPS> Get-Secret -Vault Keeper "ACME Login.password" -AsPlainText
gmzN6E8@9E97%xPB6Pg0Set a Value to a Secret
Update the value of a single secret field
Set-Secret -Vault <KEEPER VAULT NAME> <RECORD NAME OR UID>.<FIELD> <VALUE TO SET>Download a File
Use dot notation to specify a file attached to a secret in the Keeper vault. Then pass that file to the Set-Content command to download it.
Get-Secret -Vault <KEEPER VAULT NAME> <RECORD NAME OR UID>.files[<FILENAME>] `
| Set-Content -Path <FILE PATH> -AsByteStreamPS> Get-Secret -Vault Keeper my_record.files[file1.json] `
| Set-Content -Path ./file1.json -AsByteStreamThe specified file will be downloaded to the path location given to Set-Content
Last updated
Was this helpful?

