Created
November 29, 2018 10:28
-
-
Save baywet/7e1345f1c07ed84ea0ae084395e00e27 to your computer and use it in GitHub Desktop.
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
param([String]$version) | |
Install-PackageProvider -Name NuGet -Force -Scope "CurrentUser" | |
if($version -ne "") { | |
Install-Module SharePointPnPPowerShellOnline -Scope "CurrentUser" -RequiredVersion $version -Verbose -AllowClobber -Force | |
} else { | |
Install-Module SharePointPnPPowerShellOnline -Scope "CurrentUser" -Verbose -AllowClobber -Force | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment