Skip to content

Instantly share code, notes, and snippets.

@jikuja
Created March 29, 2023 08:44
Show Gist options
  • Save jikuja/be7d70ed8ef4779cc0e356685468e9b5 to your computer and use it in GitHub Desktop.
Save jikuja/be7d70ed8ef4779cc0e356685468e9b5 to your computer and use it in GitHub Desktop.
Notes for MMA
$mma = New-Object -ComObject 'AgentConfigManager.MgmtSvcCfg'
$mma.GetCloudWorkspaces()
$workspaceId = "<Your workspace Id>"
$workspaceKey = "<Your workspace Key>"
$mma = New-Object -ComObject 'AgentConfigManager.MgmtSvcCfg'
$mma.AddCloudWorkspace($workspaceId, $workspaceKey)
$mma.ReloadConfiguration()
$workspaceId = "<Your workspace Id>"
$mma = New-Object -ComObject 'AgentConfigManager.MgmtSvcCfg'
$mma.RemoveCloudWorkspace($workspaceId)
$mma.ReloadConfiguration()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment