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
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
| Product | Microsoft Identity Integration Server 2003 SP2 |
|---|---|
| MOF | Mmswmi.mof |
See Also
MIIS_ManagementAgent
Return Strings
Send comments about this topic to Microsoft
Build date: 2/16/2009
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()
- 3/19/2010
- Craig Martin