MIM Sync Service
Documentation Home
  • Home
  • Disclaimer
  • Installation
    • Getting Started
    • Downloads
  • Usage
    • Cmdlet Reference
      • Clear-RunHistory
      • Clear-FullSyncWarning
      • Disconnect-CSObject
      • Export-MetaverseConfiguration
      • Export-ManagementAgent
      • Get-Connectors
      • Get-CSObject
      • Get-Disconnectors
      • Get-LastRunDetails
      • Get-MAStatistics
      • Get-MVSchema
      • Get-MVObject
      • Get-MVConfiguration
      • Get-ManagementAgent
      • Get-PendingImports
      • Get-PendingImportAdds
      • Get-PendingImportDeletes
      • Get-PendingImportUpdates
      • Get-PendingExports
      • Get-PendingExportAdds
      • Get-PendingExportDeletes
      • Get-PendingExportRenames
      • Get-PendingExportUpdates
      • Get-RunProfiles
      • Get-RunProfileNames
      • Join-CSObject
      • New-MVObject (Project-MVObject)
      • New-MVQuery
      • Set-DisconnectorState
      • Set-MVProvisioningRulesExtension
      • Start-ManagementAgent
      • Stop-ManagementAgent
      • Sync-CSObject
      • Wait-ManagementAgent
Powered by GitBook
On this page
  1. Installation

Getting Started

PreviousDisclaimerNextDownloads

Last updated 3 years ago

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

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

PS module