From 16885ee48a58463b84e9bb50e9e0c93990e5b415 Mon Sep 17 00:00:00 2001 From: Steven Judd Date: Tue, 21 May 2024 17:25:30 -0500 Subject: [PATCH] Update using-secretstore.md install commands 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