Run a FIM 2010 R2 specific Management Agent with PowerShell

Hello, Here is a cmdlet I to start a selected Management Agent with a specific Run Profil. (Get-WmiObject -ComputerName $FIMSyncServer -NameSpace ‘root/MicrosoftIdentityIntegrationServer’ -Class ‘MIIS_ManagementAgent’ | Where-Object { $_.Name -eq $ManagementAgent }).Execute($RunProfile)

List FIM 2010 R2 Management Agents with PowerShell

Hello, Here is the cmdlet to list FIM Sync Management Agents. Get-WmiObject -ComputerName ‘FIMSyncServer’ -NameSpace ‘root/MicrosoftIdentityIntegrationServer’ -Class ‘MIIS_ManagementAgent’

Get the Run History of FIM Sync using PowerShell

Hello, If like you me you use Forefront Identity Manager for a long time and love PowerShell you might want to use the following PowerShell command to list the Run History of FIM Synchronization Server. Get-WmiObject -ComputerName $FIMSyncServer -NameSpace ‘root/MicrosoftIdentityIntegrationServer’ -Class ‘MIIS_RunHistory’

How can I use PowerShell to manage FIM 2010 R2 ?

Hello Currently working on a project for Avanade with Forefront Identity Manager 2010 R2 and making my way arround PowerShell. As You may not know, there is no PowerShell module for FIM 2010 R2 at all (except the FIMAutomation snippet but limited to the FIM Portal part). There is a snippet available from the FIM […]