Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

You find that several custom attributes are missing when you use ADMT to migrate users between two forests


View products that this article applies to.

Symptoms

When you use the Active Directory Migration Tool (ADMT) to migrate users between two forests, several custom attributes of the user object may not be migrated.

↑ Back to the top


Cause

This problem occurs if the SystemPropertiesToExclude variable in the Windows Management Instrumentation (WMI) namespace ADMT.Migration object contains the attributes that you want to migrate to the destination forest.

The attributes that are contained inside the SystemPropertiesToExclude variable are not migrated, even though the ADMT user interface displays all the attributes that you want to migrate.

↑ Back to the top


Resolution

To resolve this problem, find the attributes that are included in the SystemPropertiesToExclude variable by using a script, and then exclude the attributes that you want to migrate from the SystemPropertiesToExclude variable. To do this, follow these steps:
  1. Click Start, point to Programs, point to Accessories, and then click Notepad.
  2. Copy and then paste the following code into a new Notepad document. Then, save the code to a file name that has a .vbs extension, such as DisplayExclusionList.vbs.
    Set o = CreateObject("ADMT.Migration")
    WScript.Echo o.SystemPropertiesToExclude
    Note This script lists the attributes that are not migrated.
  3. Double-click the .vbs file to run the script.
  4. Verify that the custom attributes that were not migrated are included in the output that is displayed.
  5. Run the following script after you make sure that only the custom attributes that you do not want to migrate are included in the SystemPropertiesToExclude variable. To do this, follow these steps:
    1. Copy and then paste the following code into a new Notepad document. Then, save the code to a file name that has a .vbs extension, such as ExclusionList.vbs.
      Set o = CreateObject("ADMT.Migration")
      o.SystemPropertiesToExclude = "<Attribute1>,<Attribute2>,<Attribute3>"
      Note Replace Attribute 1, Attribute2, and any other attributes that are listed with the attributes that you do not want to migrate.
    2. Double-click the .vbs file to run the script.
  6. Run ADMT.

Note: Running on a x64 Sytem (e.g. Windows Server 2008 R2) these scripts needs to be executed with a 32bit version of cscript.exe located in c:\windows\syswow64

e.g. c:\windows\SysWOW64\cscript.exe DisplayExclusionList.vbs



↑ Back to the top


Keywords: kbtshoot, kbentirenet, kbexpertiseadvanced, kbprb, kb

↑ Back to the top

Article Info
Article ID : 937537
Revision : 1
Created on : 1/7/2017
Published on : 11/18/2011
Exists online : False
Views : 278