Updating PowerShellGet demo

This commit is contained in:
Manikyam Bavandla 2016-07-20 18:35:52 -07:00
parent 439ea6a334
commit 1889ab18c5

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