Skip to content

Latest commit

 

History

History
51 lines (33 loc) · 1.54 KB

File metadata and controls

51 lines (33 loc) · 1.54 KB

Installing the Module

Verify that your system has a supported edition and version of PowerShell installed.

Install the PowerShell module dependencies from the PowerShell Gallery by running the following commands:

--8<-- "./docs/snippets/install-module.ps1"

If using PowerShell Core, import the modules before proceeding:

For example:

--8<-- "./docs/snippets/import-module.ps1"

To verify the module dependencies are installed, run the following commands in the PowerShell console.

Example:

Test-VcfPasswordManagementPrereq

:material-information-slab-circle:   Reference

Once installed, any cmdlets associated with VMware.CloudFoundation.PasswordManagement and the its dependencies will be available for use.

To view the cmdlets for available in the module, run the following command in the PowerShell console.

Get-Command -Module VMware.CloudFoundation.PasswordManagement

To view the help for any cmdlet, run the Get-Help command in the PowerShell console.

For example:

Get-Help -Name Invoke-PasswordPolicyManager
Get-Help -Name Invoke-PasswordPolicyManager -Examples
Get-Help -Name Invoke-PasswordPolicyManager -Full