From 9f9c38e356397fb6a2b58a5a36d1cfc4bf6f67d4 Mon Sep 17 00:00:00 2001 From: Steven Judd Date: Tue, 21 May 2024 17:50:57 -0500 Subject: [PATCH] Update using-secretstore.md install commands (#228) Separates the PowerShell commands to install the SecretManagement and SecretStore modules using either PowerShellGet or PSResourceGet so that the install commands can be copied and run separately without trying to run both methods in one copied command. --- .../SecretManagement/get-started/using-secretstore.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/reference/docs-conceptual/SecretManagement/get-started/using-secretstore.md b/reference/docs-conceptual/SecretManagement/get-started/using-secretstore.md index e7f4cdb..0d9f6dc 100644 --- a/reference/docs-conceptual/SecretManagement/get-started/using-secretstore.md +++ b/reference/docs-conceptual/SecretManagement/get-started/using-secretstore.md @@ -12,7 +12,11 @@ can be installed using **PowerShellGet** commands. # Install with PowerShellGet 2.x Install-Module Microsoft.PowerShell.SecretManagement Install-Module Microsoft.PowerShell.SecretStore +``` + +or +```powershell # Install with PSResourceGet 1.x Install-PSResource Microsoft.PowerShell.SecretManagement Install-PSResource Microsoft.PowerShell.SecretStore