tailieunhanh - Active Directory Cookbook for windows server 2003- P16

Active Directory Cookbook for windows server 2003- P16:If you are familiar with the O'Reilly Cookbook format that can be seen in other popular books, such as the Perl Cookbook, Java Cookbook, and DNS and BIND Cookbook, then the layout of this book will not be anything new to you. The book is composed of 18 chapters, each containing 10-30 recipes for performing a specific Active Directory task. Within each recipe are four sections: problem, solution, discussion, and see also. | Recipe Moving the Objects in an OU to a Different OU Problem You want to move some or all of the objects in an OU to a different OU. You may need to do this as part of a domain restructuring effort. Solution Using a graphical user interface 1. Open the Active Directory Users and Computers snap-in. 2. If you need to change domains right-click on Active Directory Users and Computers in the left pane select Connect to Domain enter the domain name and click OK. 3. In the left pane browse to the OU that contains the objects you want to move and click on it. 4. Highlight the objects in the right pane you want to move right-click on them and select Move. 5. Browse to the parent container you want to move the objects to click on it. 6. Click OK. 7. Press F5 to refresh the contents of the OU. If objects still exist repeat the previous three steps. Using a command-line interface for F usebackq delims i in dsquery OldOrgUnitDN -scope onelevel RETURN do dsmove -newparent NewOrgUnitDN i Using VBScript This code moves objects from the old OU to the new OU ----- SCRIPT CONFIGURATION -------- strOldOrgUnit OldOrgUnitDN . ou Eng Tools dc rallencorp dc com strNewOrgUnit NewOrgUnitDN . ou Tools dc rallencorp dc com ----- END CONFIGURATION ----------- set objOldOU GetObject LDAP strOldOrgUnit set objNewOU GetObject LDAP strNewOrgUnit for each objChildObject in objOldOU Moving next Discussion Using a graphical user interface 161 If you want to move more than 2 000 objects at one time you will need to modify the default number of objects displayed as described in Discussion section of Recipe . Using a command-line interface Since dsmove can move only one object at a time I had to use the for command to iterate over each child object returned from dsquery. Also note that if you want to move more than 100 objects you ll need .

crossorigin="anonymous">
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.