BitTitan.Runbooks.SharePointOnline.psm1
<#
.SYNOPSIS PowerShell module for common SharePoint Online functions and resources used in BitTitan Runbooks. .NOTES Version: 0.1.1 Last updated: 12 December 2018 Copyright (c) BitTitan, Inc. All rights reserved. Licensed under the MIT License. #> # Install/import BitTitan.Runbooks.Modules to bootstrap the install/import of the other modules Install-Module BitTitan.Runbooks.Modules -Scope CurrentUser -AllowClobber Import-Module BitTitan.Runbooks.Modules -Force # Install/import external modules Import-ExternalModule Microsoft.Online.SharePoint.PowerShell -RequiredVersion 16.0.8212.0 -Quiet # Install/import the other BitTitan.Runbooks modules Import-BT_Module BitTitan.Runbooks.Common -Quiet Import-BT_Module BitTitan.Runbooks.MSPComplete -Quiet |