Skip to content

Instantly share code, notes, and snippets.

@KirkMunro
Last active January 15, 2018 15:13
Show Gist options
  • Save KirkMunro/9765959 to your computer and use it in GitHub Desktop.
Save KirkMunro/9765959 to your computer and use it in GitHub Desktop.
Install or Update the ScsmPx module to the latest release
# 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
# 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