Getting Started

Getting started

Install the module

  • Ensure you have .NET framework 4.5 or higher is installed on the server

  • Ensure that PowerShell 4.0 or higher is installed on the server

  • Ensure that Forefront Identity Manager 2010 R2 v4.1.3441 or Microsoft Identity Manager 2016 is installed on the server

  • Download and install the PS module

Quick start examples

Some examples to get you started

# 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 FI

Last updated