BitTitan.Runbooks.AzureRMS.psm1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<#
.SYNOPSIS PowerShell module for common Azure RMS functions and resources used in BitTitan Runbooks .NOTES Version: 0.2.5 Last updated: 9 November 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 AADRM -RequiredVersion 2.13.1.0 # Install/import the other BitTitan.Runbooks modules Import-BT_Module BitTitan.Runbooks.MSPComplete -Quiet |