July 2018
Beginner
552 pages
13h 18m
English
When it comes to working with our newly created gallery, the PowerShellGet and PackageManagement modules are necessary. While the PackageManagement module allows general access to different package providers and allows you to, for example, push and pull NuGet packages, PowerShellGet is PowerShell-specific. PackageManagement is the required module for PowerShellGet, so you can see that they are tightly coupled:
# Compare PackageManagement and PowerShellGetGet-Command -Module PackageManagementGet-Command -Module PowerShellGet# List the pre-installed sourceGet-PSRepository# Connect to the source to download data# For the default repository you don't need to specify the nameFind-Module AutomatedLab -Repository PSGallery# Interacting ...
Read now
Unlock full access