July 2018
Beginner
552 pages
13h 18m
English
Working with external dependencies is easy due to modules such as PackageManagement, which allow the bootstrapping of all the necessary components of a module or script on the fly:
# Module cmdletsGet-Command -Module PackageManagement# Interacting with repositories# You have different package sources that you can add and removeGet-PackageSource# These sources are powered by different providersGet-PackageProvider# In order to find packages, narrow down by provider# You can locate binary packagesFind-Package -Name notepadplusplus -ProviderName Chocolatey# and PowerShell modulesFind-Package -Name AutomatedLab -ProviderName PowerShellGet
Installing packages with PackageManagement is very easy. The package cmdlets ...
Read now
Unlock full access