QuickStart
Installing from the PowerShell Gallery
You can use PowerShell's built-in Install-Module feature to automatically download the latest stable version of UcmPsTools into your PowerShell directory
Install-Module UcmPsTools
Installing from Release
Can't access the PowerShell Gallery? No problem, you can download the latest build from the Releases page on GitHub, transfer it to your target machine and place it into your PowerShell modules folder.
(C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules
or C:\Program Files\WindowsPowerShell\Modules
by default).
Developing UcmPsTools
Wanna try the bleeding edge and not have the beta code sitting in your modules folder? Maybe develop your own fork? Just clone the dev branch from GitHub and run Test-ImportFunctions.ps1
#Clone the repo
git home https://github.com/Atreidae/UcmPsTools.git c:\UcMadScientist\UcmPsTools
#Dot source the test script to load all cmdlets in the 'public' folder
. c:\UcMadScientist\UcmPsTools\Test-ImportFunctions.ps1
#To include cmdlets in the 'private' folder, add the -Private switch
. c:\UcMadScientist\UcmPsTools\Test-ImportFunctions.ps1 -Private
Last updated