Summary: Learn how to update an installed Windows PowerShell module.
I used Install-Module to install a Windows PowerShell module, but how can I update it?
Use the Update-Module cmdlet, for example:
Update-Module powershellise-preview
Here are a couple of other examples:
find-module *ise-preview | Update-Module
Update-Module *ise-preview
0 comments