Results 1 to 5 of 5

Thread: Server 2008: Moving a Group to Another Domain

  1. #1
    Join Date
    Apr 2009
    Posts
    354

    Server 2008: Moving a Group to Another Domain

    hey guys i need some urgent help from you all. I am using Windows server 2008 and i want to move one of the group to another domain using Active Directory Migration Tool (ATMT).

    Do you have any idea how to do that ? Please help.

  2. #2
    Join Date
    Jan 2008
    Posts
    3,388

    Re: Server 2008: Moving a Group to Another Domain

    To move the group with ATMT you need to have it inn your system, if don't than download ATMT Tool.

    Now follow this steps:-

    1. Install Active Directory Migration Tool

    2. Open the ADMT MMC snap-in it is located in Administrative Tools.

    3. Chose source and destination domains and click Next.

    4. On the Group Selection screen, chose the group that you want to migrate and click Next.

    5. On the next screen, select Browse and locate the desired OU.

    6. On the Group Options screen, select one or more of the following and click Next:


    Update user rights: Copies any user rights that are assigned in the source domain to the target domain.

    Copy group members: Specifies whether the user objects that belong to the group should be migrated along with the group.

    Adds the security identifiers (SIDs) of the migrated group accounts in the source domain to the SID history of the new group in the target domain.

    • On the Naming Conflicts screen, select whether you want to migrate group objects that conflict with objects in the target domain and click Next.

    • Follow the remainder of the wizard to complete the migration.

  3. #3
    Join Date
    May 2008
    Posts
    4,085

    Re: Server 2008: Moving a Group to Another Domain

    Minimum System Requirements for ATMT Tool:-

    • Supported Operating Systems: Windows Server 2008

    • ADMT can be installed on any computer capable of running the Windows Server 2008 operating system, unless they are Read-Only domain controllers or in a Server Core configuration.

    • Target domain: The target domain must be running either Windows 2000 Server or Windows Server 2003 or Windows Server 2008

    • Source domain: The source domain must be running Windows 2000 Server, Windows Server 2003, or Windows Server 2008

    • The ADMT agent, installed by ADMT on computers in the source domains, can operate on computers running Windows 2000 Professional, Windows 2000 Server, Windows XP, Windows Server 2003, Windows Vista, and Windows Server 2008.

  4. #4
    Join Date
    Apr 2009
    Posts
    354

    Re: Server 2008: Moving a Group to Another Domain

    Thanks for the reply friend, I was really in need of that. could you give me some more tips regarding Server 2008. Please, it will be useful for me.

  5. #5
    Join Date
    Apr 2008
    Posts
    3,267

    Re: Server 2008: Moving a Group to Another Domain

    Well here are some tips. Just go through this:-

    Finding Disabled Users:

    get-qaduser –disabled

    Create a new Active Directory user:


    new-QADUser -name '<User CN>' -parentContainer '<Parent DN>' -UserPassword
    '<Password>' -FirstName '<User First Name>' -LastName '<User Last Name>'
    -UserPrincipalName '<User UPN>'

    Create multiple users in Active Directory:


    $parentDN = “<ParentDN>” $strPass = “userPaswd” For ($i = 1; $i -le 1000; $i++) { $strUserName = “User” + $i New-QADUser -name $strUserName -parentContainer $parentDN -UserPassword $strPass }
    Modify Attributes for several users:
    $
    strfileServer = "\\Servername\"
    $objOU = [ADSI] "LDAP://<OU DN>"
    $objOU.psbase.Children |% {
    $uac = [int](($_.userAccountControl).ToString())
    if (($_.objectClass -eq "user") -and (($uac -band 2) -eq 0))
    {
    $_.put("homeDirectory", $strFileServer + $_.sAMAccountName)
    $_.SetInfo()
    }
    }

    Delete user in Active Directory


    remove-QADObject -identity <User DN>

    Set user profile in Active Directory


    get-QADUser -identity "<User DN>" |
    set-QADUser -HomeDirectory '\\Servername\Katrin' -HomeDrive
    'H:' -ProfilePath '\\server1\profiles\jsmith'
    -scriptpath '\\dcname\netlogon\logonscript.vbs'

Similar Threads

  1. Moving NT Server to an AD Domain
    By PHPaper in forum Networking & Security
    Replies: 2
    Last Post: 08-03-2012, 06:27 PM
  2. Replies: 2
    Last Post: 17-01-2011, 01:43 PM
  3. moving to windows server 2008 r2 from 2003 r2
    By Aussie Rules in forum Windows Server Help
    Replies: 5
    Last Post: 27-11-2009, 11:48 AM
  4. Moving from Server 2003 to Server 2008 R2 64 bit
    By jdecker in forum Windows Server Help
    Replies: 3
    Last Post: 06-10-2009, 12:19 PM
  5. domain upgrade to 2008 by adding new 2008 server
    By manishdk in forum Active Directory
    Replies: 3
    Last Post: 30-07-2008, 10:15 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,127,546.42855 seconds with 17 queries