ExportSchema.ps1

Applies To: Forefront Identity Manager 2010

# ExportSchema.ps1
# Copyright © 2009 Microsoft Corporation

# The purpose of this script is to export the current schema configuration
# in the pilot environment.

# The script stores the configuration into file "schema.xml" in the current directory.
# Please note you will need to rename the file to pilot_schema.xml or production_schema.xml.
# See the documentation for more information.

if(@(get-pssnapin | where-object {$_.Name -eq "FIMAutomation"} ).count -eq 0) {add-pssnapin FIMAutomation}

$schema_filename = "schema.xml"
Write-Host "Exporting configuration objects from pilot."
# Please note that SynchronizationFilter Resources inform the FIM MA.
$schema = Export-FIMConfig -schemaConfig -customConfig "/SynchronizationFilter"
if ($schema -eq $null)
{
    Write-Host "Export did not successfully retrieve configuration from FIM.  Please review any error messages and ensure that the arguments to Export-FIMConfig are correct."
}
else
{
    Write-Host "Exported " $schema.Count " objects from pilot."
    $schema | ConvertFrom-FIMResource -file $schema_filename
    Write-Host "Pilot file is saved as " $schema_filename "."
    if($schema.Count -gt 0)
    {
        Write-Host "Export complete.  The next step is to run ExportPolicy.ps1."
    }
    else
    {
        Write-Host "While export completed, there were no resources.  Please ensure that the arguments to Export-FIMConfig are correct." 
     }
}

See Also

Reference

Appendix A: Windows PowerShell Scripts
Appendix B: Annotated Scripts

Concepts

Configuration Migration Deployment Guide
Migration Scenarios
Configuration Migration Deployment Steps
CommitChanges.ps1
ResumeUndoneImports.ps1
SyncPolicy.ps1
SyncSchema.ps1
ExportPolicy.ps1
Appendix C: Troubleshooting FIM Configuration Migration