Skip to content

Instantly share code, notes, and snippets.

View KirkMunro's full-sized avatar
💤
Busy working on other projects

Kirk Munro KirkMunro

💤
Busy working on other projects
View GitHub Profile
@KirkMunro
KirkMunro / Install-ScsmPx.ps1
Last active January 15, 2018 15:13
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