Welcome to the new The FIM Team Community forum!

You will find general discussion, news items and feedback and content on The FIM Team activity and also all of the videos of the User Group meetings.
0

MIM Application Drive full issue

Kumar Katta 6 months ago updated 6 months ago 0

Hi Experts,

I need help from you regarding a situation which we are going through. We have a situation where MIM Sync stopped, i could see that the Database Drive in the MIM Database server is out of space. So when we troubleshoot, we could see that then Database logs are increasing and we are doing some fim sync runs cleanup.too. So is there any possibility to do some more housekeeping form MIM application end or increasing the Drive space is the only solution?

Also, the drive space is consuming close to 50 GB in every week so what could have been wrong and is there any issue from MIM application end or database end ?


0
Answered

Can I get an Azure template re-enabled

Daniel Walters 6 years ago updated by Adam van Vliet 6 years ago 2

Hello, can I please get an updated expiration date for the Azure Template, 'MIM 2016 SP1 + SQL 2016' at https://unifysolutions.sharepoint.com/teams/CTO/Lists/Azure%20Templates/DispForm.aspx?ID=30&e=lxlGai


Answer
Adam van Vliet 6 years ago

The expiries have been updated in SharePoint. Thanks.

0

More efficient PowerShell query for MA Audit Drop File XML query

Bob Bradley 8 years ago updated by anonymous 8 years ago 2

I am working on a variation of the Safety Catch script for a customer whereby I have an MA (sync) filter specified in the application settings of MIISERVER.EXE.CONFIG file, and I need to exclude CS objects that are filtered disconnectors as a result. The following is my code - which works OK, but is kind of slow, and I am after some ideas as to how to do this more efficiently. Any ideas please?


The following code snippet is a variant of the "Get-ThresholdCounters" function, and uses a new function to return the XML from miiserver.exe.config.


$FIMServicePath = "E:\Program Files\Microsoft Forefront Identity Manager\2010\Synchronization Service\"

    [xml]$directoryEntries = Get-AuditDropFile -FIMServicePath $FIMServicePath
    $ns = New-Object Xml.XmlNamespaceManager($directoryEntries.NameTable)
    $ns.AddNamespace( "a", $directoryEntries.DocumentElement.xmlns )


    # Examine delta data
    $Counters.StepType = $directoryEntries.mmsml."step-type"
    $deltas = $null #$directoryEntries.SelectNodes("//a:delta",$ns)


    # Client only - load miiserver.exe.config files to read config data
    [xml]$fimConfig = Get-FIMSyncConfigFile -FIMServicePath $FIMServicePath
    $sourceContactDNsToJoin = @($fimConfig.configuration.applicationSettings.'Mms_ManagementAgent_CORPExtensions.Properties.Settings'.setting.Where({$_.name -eq "sourceContactDNsToJoin"}).value.ArrayOfString.string)


    if ($sourceContactDNsToJoin) {
        # Client only
        $deltasToRemove = @()
        foreach($dn in $sourceContactDNsToJoin) {
            $deltasToRemove += $directoryEntries.SelectNodes("//a:delta",$ns).Where({$_.dn -like "*$dn"}).dn
        }
        $deltas = $directoryEntries.SelectNodes("//a:delta",$ns).Where({$_.dn -notin $deltasToRemove})
    } else {
        $deltas = $directoryEntries.SelectNodes("//a:delta",$ns)
    }


Any help most appreciated.