Last active
January 15, 2018 15:13
-
-
Save KirkMunro/9765959 to your computer and use it in GitHub Desktop.
Install or Update the ScsmPx module to the latest release
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If you want to install ScsmPx for all users or update a version already installed | |
# (recommended, requires elevation for new install for all users) | |
& ([scriptblock]::Create((iwr -uri http://bit.ly/Install-ModuleFromGitHub).Content)) -ModuleName ScsmPx,SnippetPx | |
# If you want to install ScsmPx for the current user | |
& ([scriptblock]::Create((iwr -uri http://bit.ly/Install-ModuleFromGitHub).Content)) -ModuleName ScsmPx,SnippetPx -Scope CurrentUser |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If you don’t have ScsmPx installed already and you want to install it for all | |
# all users (recommended, requires elevation) | |
Install-Module ScsmPx,SnippetPx | |
# If you don't have ScsmPx installed already and you want to install it for the | |
# current user only | |
Install-Module ScsmPx,SnippetPx -Scope CurrentUser | |
# If you have ScsmPx installed and you want to update it | |
Update-Module |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment