Use the commands below to install NuGet modules (packages) and scripts:
Install NuGet Modules
To install a PowerShell module, run the following command:
Important
Make sure to replace the <PACKAGE_NAME> placeholder in the snippet to reflect the PowerShell module you would like to install
Install-Module -Name <PACKAGE_NAME> -Repository adam-nuget-local-normalized -Credential $credential
Install NuGet Scripts
To install a PowerShell script, run the following command:
Important
Make sure to replace the <PACKAGE_NAME> placeholder in the snippet to reflect the PowerShell module you would like to install
Install-Script -Name <PACKAGE_NAME> -Repository adam-nuget-local-normalized -Credential $credential