When I migrate users and their associated groups, can DMA automatically put the migrated users in an (NETIQKB4910)

  • 7704910
  • 02-Feb-2007
  • 28-Feb-2008

Resolution

goal
When I migrate users and their associated groups, can DMA automatically put the migrated users in an existing group in the target domain?

fix

DMA does not provide a method for automatically placing the migrated users in an existing group in the target domain using the GUI. This can be accomplished with scripting.

Below is a sample 'Post User' script that will add a user to a group.  You can use this as a starting point, modifying it to match the specifics of your environment.

Set grp = GetObject("LDAP://CN=group_name,OU=container,DC=domain,DC=domain ")  'For Win2k target domains
Set grp = GetObject("WinNT://domain_name/group_name")     'For NT domains
mem = grp.Add(targetObject.adspath)

Please refer to our white paper "Customizing Domain Migration Administrator with Scripting" which can be downloaded from https://www.netiq.com/products/dma/whitepapers.asp for more details.



note
Please note that information regarding the use of scripting can also be obtained from Chapter 9 of the DMA 7.1 User Guide.

note

The script and any related documentation is provided "AS IS," and NetIQ makes no warranties with respect to it, or its use or operation. NetIQ has no responsibility for any impact arising from your use of the script provided.

Please be advised that this script should be fully tested in your lab environment before using in any production environment. Please do not use this script until you are completely satisfied that it will work based on your complete testing matrix in your lab environment. NetIQ Technical Support has done an extreme minimal amount of testing on the script.



Additional Information

Formerly known as NETIQKB4910