-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: update install module with repository flag (#189)
Update the installation documentation to specify the PowerShell Gallery as the source repository. --------- Signed-off-by: Jared Burns <[email protected]> Signed-off-by: Ryan Johnson <[email protected]> Co-authored-by: Ryan Johnson <[email protected]>
- Loading branch information
1 parent
2c9b1ca
commit 0899c29
Showing
3 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted | ||
Install-Module -Name VMware.PowerCLI -MinimumVersion 13.1.0 | ||
Install-Module -Name VMware.vSphere.SsoAdmin -MinimumVersion 1.3.9 | ||
Install-Module -Name PowerVCF -MinimumVersion 2.3.0 | ||
Install-Module -Name PowerValidatedSolutions -MinimumVersion 2.6.0 | ||
Install-Module -Name VMware.CloudFoundation.Reporting | ||
Install-Module -Name VMware.PowerCLI -MinimumVersion 13.1.0 -Repository PSGallery | ||
Install-Module -Name VMware.vSphere.SsoAdmin -MinimumVersion 1.3.9 -Repository PSGallery | ||
Install-Module -Name PowerVCF -MinimumVersion 2.3.0 -Repository PSGallery | ||
Install-Module -Name PowerValidatedSolutions -MinimumVersion 2.6.0 -Repository PSGallery | ||
Install-Module -Name VMware.CloudFoundation.Reporting -Repository PSGallery |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Save-Module -Name VMware.PowerCLI -Path /home/modules | ||
Save-Module -Name VMware.vSphere.SsoAdmin -Path /home/modules | ||
Save-Module -Name PowerVCF -Path /home/modules | ||
Save-Module -Name PowerValidatedSolutions -Path /home/modules | ||
Save-Module -Name VMware.CloudFoundation.Reporting -Path /home/modules | ||
Save-Module -Name VMware.PowerCLI -Path /home/modules -Repository PSGallery | ||
Save-Module -Name VMware.vSphere.SsoAdmin -Path /home/modules -Repository PSGallery | ||
Save-Module -Name PowerVCF -Path /home/modules -Repository PSGallery | ||
Save-Module -Name PowerValidatedSolutions -Path /home/modules -Repository PSGallery | ||
Save-Module -Name VMware.CloudFoundation.Reporting -Path /home/modules -Repository PSGallery |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Save-Module -Name VMware.PowerCLI -Path F:\Module\ | ||
Save-Module -Name VMware.vSphere.SsoAdmin -Path F:\Module\ | ||
Save-Module -Name PowerVCF -Path F:\Module\ | ||
Save-Module -Name PowerValidatedSolutions -Path F:\Module\ | ||
Save-Module -Name VMware.CloudFoundation.Reporting -Path F:\Module\ | ||
Save-Module -Name VMware.PowerCLI -Path F:\Module\ -Repository PSGallery | ||
Save-Module -Name VMware.vSphere.SsoAdmin -Path F:\Module\ -Repository PSGallery | ||
Save-Module -Name PowerVCF -Path F:\Module\ -Repository PSGallery | ||
Save-Module -Name PowerValidatedSolutions -Path F:\Module\ -Repository PSGallery | ||
Save-Module -Name VMware.CloudFoundation.Reporting -Path F:\Module\ -Repository PSGallery |