This topic has not yet been rated - Rate this topic

SuppressFullSyncWarning Method of the MIIS_ManagementAgent Class


The SuppressFullSyncWarning method suppresses the full sync warning on this Management Agent (MA) for the most recent update.

Syntax


String SuppressFullSyncWarning();

Parameters

This method has no parameters.

Return Value

The return value can be one of the values listed in Return Strings.

Remarks

If the application makes another configuration change that initiates the full sync warning, it must call SuppressFullSyncWarning again to suppress the warning. This method can be called before every run to suppress all full sync warnings on this MA.

Requirements

ProductMicrosoft Identity Integration Server 2003 SP2
MOFMmswmi.mof

See Also

MIIS_ManagementAgent
Return Strings


Send comments about this topic to Microsoft

Build date: 2/16/2009

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
Suppressing Full Sync Warnings with PowerShell

Pretty simple sample, but kinda neat since it both suppresses the warning in the Identity Manager UI and also the Event Log warnings (event ID 6127).

$ma = Get-WmiObject -Class MIIS_ManagementAgent -Namespace root/MicrosoftIdentityIntegrationServer -Filter ("Name='FIMMA'")
$ma.SuppressFullSyncWarning()