-
Notifications
You must be signed in to change notification settings - Fork 3.9k
PowerShellGet
Abdelrahman Elogeel edited this page Mar 17, 2015
·
4 revisions
- Install WMF 5.0
- Request access to PowerShellGallery from here (this step is required if publishing modules is intended)
- Manikyam Bavandla
- Keith Bankston
- Modules are discoverable by default after install
- Modules are installed under
%ProgramFiles%\WindowsPowerShell\Modules
- To check updates execute
Update-Module –WhatIf
Install, Uninstall and other cmdlets are described here
- Updating loaded module fails because PSGet tries to delete a module file that is already loaded. You will need to remove the module
Remove-Module <Module Name>
and then update to the latest version. - There is no support to module dependency. In the next release, ModuleVersion will be used to specify the minimum version and RequiredVersion will be used for the exact version.
- Module specification doesn’t support the version range yet.