### Initialize MSPC Context with Customer ID Source: https://github.com/bittitan/bittitan-sdk/blob/master/PowerShell/README.md Initialize a global MSPC context using credentials and a customer ID. This sets up the context for operations related to a specific customer. ```powershell # Case 1: Initialize an mspc context with a customer ID # Note: the customer's workgroup is used in creating both the workgroup and workgroup ticket. Initialize-MSPC_Context -Credentials $credentials -CustomerId 'your customer ID here' ``` -------------------------------- ### Initialize MSPC Context with Workgroup ID Source: https://github.com/bittitan/bittitan-sdk/blob/master/PowerShell/README.md Initialize a global MSPC context using credentials and a workgroup ID. This context is scoped to the specified workgroup. ```powershell # Case 2: Initialize an mspc context with a workgroup ID # Note: no customer nor customer ticket are created in this case. Initialize-MSPC_Context -Credentials $credentials -WorkgroupId 'your workgroup ID here' ``` -------------------------------- ### Clone BitTitan PowerShell SDK Repository Source: https://github.com/bittitan/bittitan-sdk/blob/master/PowerShell/README.md Clone the BitTitan SDK repository to your local machine to access the provided scripts and tools. ```shell git clone https://github.com/BitTitan/bittitan-sdk.git ``` -------------------------------- ### Clear Existing MSPC Context Source: https://github.com/bittitan/bittitan-sdk/blob/master/PowerShell/README.md Clear the current global MSPC context before initializing a new one. This is useful for resetting the context during testing or debugging. ```powershell # Case 3: Clear the existing global $mspc context # Note: clears the existing $mspc context before creating a new mspc context. Initialize-MSPC_Context -Clear ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.