Getting Started
Getting started
Install the module
Quick start examples
# Load the PS module
Import-Module LithnetMIISAutomation
# Get a management agent and list the export attribute flows
$ma = Get-ManagementAgent AD
$ma.ExportAttributeFlows
# Get pending exports in a connector space and perform a full sync on them
Get-PendingExports -MA ACMA | Sync-CSObject -Commit
# Get the metaverse object with an accountName of 'test'
Get-MVObject person accountName test
# Start the run profile 'FI' on a management agent
Start-ManagementAgent ACMA FILast updated