remove -PublishLocation

This commit is contained in:
Michael Greene 2016-08-02 15:09:32 -05:00
parent 002adc283b
commit b92791216b

View file

@ -66,7 +66,7 @@ Get-InstalledScript
Get-PSRepository
# Register a new private feed
Register-PSRepository -Name "myPrivateGallery" SourceLocation "https://www.myget.org/F/powershellgetdemo/api/v2" -PublishLocation "https://www.myget.org/F/powershellgetdemo/api/v2/Packages" -InstallationPolicy Trusted
Register-PSRepository -Name "myPrivateGallery" SourceLocation "https://www.myget.org/F/powershellgetdemo/api/v2" -InstallationPolicy Trusted
# Change the trust level for a repositories
Set-PSRepository -Name "myPrivateGallery" -InstallationPolicy "Untrusted"