PowerShell modules
Check where are PowerShell modules located in the system:
$Env:PSModulePath
Returns paths to the locations of the modules locally installed. New modules can be copied to one of those locations in order to make them available.
Check modules available:
Get-Module -ListAvailable
$Env:PSModulePath
Returns paths to the locations of the modules locally installed. New modules can be copied to one of those locations in order to make them available.
Check modules available:
Get-Module -ListAvailable
Comments
Post a Comment