October 2017
Intermediate to advanced
440 pages
11h 47m
English
The Install-Module command installs or updates modules from the PowerShell Gallery or any other configured repository. By default, Install-Module adds modules to the path for AllUsers, C:\Program Files\WindowsPowerShell\Modules.
For example, the posh-git module may be installed using either of the following two commands:
Find-Module posh-git | Install-Module Install-Module posh-git
Modules may be installed under a user-specific path ($home\Documents\WindowsPowerShell\Modules) using the Scope parameter:
Find-Module carbon -Scope CurrentUser
If the most recent version of a module ...
Read now
Unlock full access