BitTitan.Runbooks.Sync.psm1
<#
.SYNOPSIS PowerShell module for the sync framework used in BitTitan Runbooks .NOTES Version: 0.1.5 Last updated: 7 March 2019 Copyright (c) BitTitan, Inc. All rights reserved. Licensed under the MIT License. #> # Install and import BitTitan.Runbooks.Modules for the Import-BT_Module and Import-ExternalModule functions if ("BitTitan.Runbooks.Modules" -notIn (Get-Module).Name) { Install-Module BitTitan.Runbooks.Modules -Scope CurrentUser -AllowClobber -Force Import-Module -Name "$($env:USERPROFILE)\Documents\WindowsPowerShell\Modules\BitTitan.Runbooks.Modules" -Force } # Import external modules # Import BitTitan.Runbooks modules Import-BT_Module BitTitan.Runbooks.Common -Quiet |