Updating PowerShellGet demo

This commit is contained in:
Manikyam Bavandla 2016-07-20 18:35:52 -07:00 committed by Manikyam Bavandla
parent 5ba2a3b7b8
commit 7120cecc15

View file

@ -2,10 +2,6 @@
Get-PSRepository
Register-PSRepository -Name PSGalleryINT -SourceLocation https://dtlgalleryint.cloudapp.net -InstallationPolicy Trusted
Get-PSRepository
Find-Module
Find-Module ContosoServer
@ -15,7 +11,7 @@ Get-ChildItem -Path /tmp/ContosoServer -Recurse
Install-Module -Name ContosoServer -RequiredVersion 1.5 -Scope CurrentUser
Get-InstalledModule
Get-Module -ListAvailable ContosoServer
Get-InstalledScript ContosoServer | Format-List *
Get-InstalledModule ContosoServer | Format-List *
Install-Module -Name ContosoClient -RequiredVersion 1.0 -Scope CurrentUser
Get-InstalledModule ContosoClient