Active Directory Forest Recovery

Size: px
Start display at page:

Download "Active Directory Forest Recovery"

Transcription

1 Active Directory Forest Recovery Contents 1. Introduction 2. Active Directory Components 3. Possible Active Directory Disasters 4. Recovery of User, Group and Organization Unit a. Authoritative Restore b. Non-Authoritative Restore c. Reanimation of objects from Tomb stone 5. Recovery of Global Catalog 6. Seizing of FSMO roles 7. SYSVOL Recovery (DFS based and FRS based) 8. Recreate default GPOs 9. Recovery of DNS 10. Recover Application partition of Active Directory 11. Schema and Forest Recovery 12. Recover forest from unrecoverable state Introduction In this article, we will cover what are the Active Directory components, what can go wrong with them, and what are best practices that can be followed to recover from any disaster. Active Directory Components Active Directory Domain or Domains Global Catalog FSMO Roles SYSVOL Schema Partition Configuration Partition Application Partition Best Practices: 1. Backup Active Directory database every week or at least backup once within tombstone period. 2. Create an isolated AD Site that is assigned to a subnet not associated with any user, workstation or server subnet. Place a domain controller from each domain on this site and set the replication interval to 7 days. This Active Directory site may be used to authoritatively restore any accidently deleted object without restoring from backups

2 Since replication interval is high, there is possibility that you will be aware of accidently deleted objects before they get replicated to isolated Active Directory site. Possible Active Directory Disasters: Deletion of Users, Groups, Computers or Organization Unit Corruption of Global Catalog Lingering Objects Corruption of SYSVOL Corruption of Configuration / Application Partition Corruption in DNS Lost Domain Controller with FSMO role Corruption while updating Schema Consider the following Active Directory design: Title Forest Root Domain Child Domains Root Domain Controllers ChildA Domain Controllers ChildB Domain Controllers Details SARVESH.LOCAL CHILDA.SARVESH.LOCAL & CHILDB.SARVESH.LOCAL DC01.SARVESH.LOCAL DC02.ChildA.Sarvesh.local & DC03.ChildA.Sarvesh.local DC04.ChildB.Sarvesh.local & DC05.ChildB.Sarvesh.local Deletion of Users, Groups, Computers and Organization Unit: Points to note before attempting recovery: A. Is there a writable domain controller that has not received replication packets? B. Was the item deleted before or after tombstone period? C. When was the most recent Active Directory backup taken? If there is a Domain Controller that has not received deletion updates then: Stop the Inbound Replication immediately and perform Authoritative Restore. First Execute: Repadmin /options <DC_Name> +DISABLE_INBOUND_REPL

3 Perform Authoritative Restore: User Restoration: Let us assume user Joe got deleted and it needs to be authoritatively restored from domain controller that has not received replication packets 1. Stop ADDS Service (for Windows 2008 and above domain controllers) Net stop NTDS would stop ADDS service

4 USN Before Restore USN After Restore

5 Benefits of this approach: This is the easiest method to update all partner servers and to recreate the object on them. There will be no loss of any attributes and group membership. Always perform recovery on Global Catalog. Why? We suggest that you perform restoration of users and groups on Global catalog as it would have information about the Universal, Global group membership across forest and its own Domain Local group. This would help in recovering group membership and creating LDIF file for further recovery Reanimation of Deleted Object from Tombstone: Explanation: When we delete an object from Active Directory, Active Directory renames the object, strips some of the attributes and set isdeleted attribute to True. Such objects remain in Deleted Objects container of domain. These objects gets deleted once they pass Tombstone lifetime and once Garbage collection process kicks in. Garbage collection process occurs every 12 hours in Active Directory Domain. How to find out Tombstone period of the domains? Execute dsquery * "CN=Directory Service,CN=Windows NT,CN=Services,CN=Configuration,<DN of your domain> attr tombstonelifetime Restore Object from TombStone: In below example, I have set some attributes for Mark like Title, Description, Manager and have added it to 3 groups: G_DomainLocal, G_Global and G_Universal. We will now delete Joe, restore it from Tombstone and confirm that these attributes and group membership will NOT get restored.

6 So, we have noted down some of the attributes and deleted the user from Active Directory. Reanimate object from Tombstone Have a look at the attributes. Description, Manager, Title and group membership have not been restored. However, SID of the object after recovery is same. Please note that Restored Object will be in disabled state and you would need to enable the object before attempting to login. Suggestion: It is always recommended to restore object from Backup or use DSAMAIN to mount the previous backup to see the older state of Active Directory object being restored. You may note down the group membership and add users to required groups later once object is restored. Authoritative Restore of Organization Unit: Scenario: We have Sales OU with three groups (Domain Local, Global and Universal) and a user account. Let us delete the OU and restore it from backup 1. Perform Non-authoritative Restore of Active Directory 2. Authoritative Restore the OU: Restore subtree OU=Sales,DC=Sarvesh,DC=local You would notice change in USN numbers of OU and all objects in the OU, making them Authoritative in the domain and for other domain controllers in domain to receive changes

7 Perform Non-Authoritative Restore: Assume that Active Directory object has been deleted and has replicated to all domain controllers in the domain. The object has also been removed from Tombstone or you must restore all attributes from the backup. Perform the below steps: 1. Restart Domain Controller in Directory Services Restore Mode and login with DSRM Password 2. Perform Restoration of System State to original location 3. At this time, do not restart the Domain Controller 4. Go to command prompt, and run NTDSUTIL 5. Type: activate instance NTDS to activate current NTDS database 6. Type: authoritative restore 7. And type restore object <DN> to restore the object

8 Recovery of Global Catalog: Global Catalog contains writable copy of its own domain and read only copy of other domains in the forest. It contains only few attributes that are commonly used, referred as Partial Attribute Set. Application like Exchange uses Global Catalog to identify users in forest and to resolve group membership across forest. Think of a scenario, where you have resolved lingering objects issue across domains and Global Catalog information for other domains is corrupted. Thereby resulting in bad results to Active Directory or Exchange Server. Corrupted Global Catalog may result in delivery failure for recipients in the local forest. Scenario ChildA.Sarvesh.local has two domain controllers DC02 and DC03, and ChildB.Sarvesh.local has two domain controllers DC04 and DC05. All of them are Global Catalog Servers. DC02 goes offline and comes online after the tombstone lifetime. Thereby, it will show deleted objects of ChildA as active and enabled, and its Global Catalog will show ChildB s deleted items as active. This would result in Active Directory inconsistency across domain controllers. If Strict replication is enabled, then there will be good of Active Directory replication errors and if Strict Replication is disabled, it would result in lingering objects. We now need to rebuild the Global Catalog of ChildB domain on DC02, which is a domain controller for ChildA. Recovery: First: Enable Strict Replication Consistency across Forest Repadmin /regkey * +strict Disable Outbound Replication, because we need to ensure that while we delete the Global Catalog information from DC02 to rebuild, it should not replicate this to other domain controllers in Active Directory forest. ** It is extremely critical to disable the Outbound replication, before rebuilding Global Catalog Repadmin /options DC02 +DISABLE_OUTBOUND_REPL Now, let us rebuild the Global Catalog: Repadmin /rehost DC02 CHILDB.SARVESH.LOCAL DC04.CHILDB.SARVESH.LOCAL Repadmin /rehost <DC Name> <Naming Context of domain> <Good DC of domain containing writable copy>

9 Rehosting is used to drop the read only copy of other domain in the forest and rebuilding it from the domain controller containing writable copy of the partition. Once rehosting is done. Enable Outbound replication. Repadmin /options DC02 DISABLE_OUTBOUND_REPL It is now recommended to use LDP.exe to query LDAP and Global Catalog to verify that Lingering objects are removed from Global Catalog Seizing of FSMO Roles: In case the Domain Controller containing any of the FSMO role is down for extended period of time and you may need to seize the role to any other domain controller in the domain or forest, follow the below steps. Run NTDSUTIL Type: Roles Type: Connections Type: Connect to server localhost Type: Seize PDC (to seize PDC Emulator role) Type: Seize naming master (to seize domain naming master) Type: Seize Infrastructure master (to seize Infrastructure master role) Type: Seize Schema master (to seize Schema master role) Type: Seize RID master (to seize RID Master role) What happens when original FSMO roles comes back online? In case domain controller that previously held any of the roles comes online, please ensure that you disable the outbound replication Perform Inbound replication from other domain controller in the forest to ensure that it receive the changes occurred in the Active Directory and made aware of FSMO role ownership changes Enable Outbound replication SYSVOL Recovery: FRS vs. DFS Active Directory Domain that are pre-windows 2008 Domain functional level use FRS to replicate SYSVOl. Domains that are upgraded from Windows 2003 to Windows 2008 and have updated Domain Functional Level to 2008 needs to go through FRS to DFS migration for SYSVOL contents. Domains that are installed with Windows 2008 as Function Level, use DFS based SYSVOL replication natively.

10 Recovery of DFS based SYSVOL: How to perform Non-Authoritative restore of SYSVOL from other replication partners: 1. Login to Domain Controller that needs to replicate fresh copy of SYSVOL contents 2. Launch ADSIEDIT.msc 3. Connect to Default Naming Context 4. Double Click on CN=SYSVOL Subscrription,CN=Domain System Volume,CN=DFSR- LocalSettings,CN=<DC_Name>,OU=Domain Controllers,DC=<your Domain DN> 5. Look for attribute msdfsr-enabled and change the value to False

11 6. Replicate Active Directory throughout domain and wait for changes to replicate all replication partners in the domain 7. Run command DFSRDIAG /POLLAD 8. You should now see event ID 4114 mentioning SYSVOL is no longer being replicated 9. Change the value msdfsr-enabled to True in ADSIEDIT for same domain controller 10. Force Active Directory replication and run command DFSRDIAG /POLLAD 11. Now SYSVOL should start replication from other replication partners Recovery of FRS based SYSVOL: 1. Stop the NTFRS service. Type below in command prompt Net stop NTFRS 2. Open registry and browse following path: HKLM\System\CurrentControlSet\Services\NTFRS\Parameters\Backup/Restore/Process at Startup

12 3. In the right pane, double click BurFlags to edit value to D2. Click Ok 4. Quit Registry and start NTFRS service net start NTFRS This would trigger replication of SYSVOL from other partners using FRS. Note: Please ensure that Active Replication across forest is normal before fixing SYSVOL replication issue. Please look at event logs, replication logs and directory services logs before attempting SYSVOL recovery How to make logons and SYSVOL work? Stop FRS replication service on all DCs. There are two GPOs required to process logons: Default Domain Controllers Policy {6AC1786C-016F-11D2-945F-00C04fB984F9} Default Domain Policy {31B2F D-11D2-945F-00C04FB984F9} Copy these polices to SYSVOL share of every domain controller How to recreate Default Group Policies? Use DCGPOFIX utility to recreate Default Domain Policy, Default Domain Controller Policy or both Dcgpofix /target:both

13 Recovery of DNS Active Directory Integrated zones can be stored in 4 places: 1. Domain Partition Sometimes referred as Legacy partition Replicated to all domain controllers in Domain 2. DomainDNSPartition Replicates to all domain controllers in domain with DNS role installed 3. ForestDNSPartition Replicates to all domain controllers in forest with DNS role installed 4. Application Partition Replicates to DNS Servers in the scope of directory partition Run dnscmd /enumzones to see which Active Directory partition stores the DNS zone:

14 Use below command to change the Directory partition of domain Dnscmd /zonechangedirectorypartition <zone-name> /forest /domain /legacy Now the DNS Export and recovery: Login to Domain Controller that has DNS role installed Dnscmd <server_name> /zoneexport <dns-name> <export-file-name>

15 Once the Zone is exported, you may import zone as standalone DNS zone and later save it to Active Directory if required. DNS Best Practices: 1. If you have multiple DNS servers for Active Directory in the site, it is recommended to use another server as Primary DNS server and own as secondary. 2. In case there is no other DNS In local site, then use remote site DNS server as secondary server on the domain controller 3. If there are multiple domains in the forest, it is advisable to push DNS suffix to all workstations instead of using WINS. This would reduce load on WINS 4. DNS Zones that are stored in any of Active Directory partition get restores along with Active Directory per the recovery method you choose. However, we recommend to take export dump of Active Directory Domain DNS zone to assist with during critical recovery process Recover Application Directory Partition Restart Server in Directory Services Restart Mode or stop NTDS service Net stop NTDS Run NTDSUTIL Type activate instance NTDS Type Authoritative Restore Type: List NC CRs

16 To restore any Application partition, make a note of the Partition and corresponding Cross-Ref Type: restore subtree <Partition information> Restore subtree DC=ForestDNSZones,DC=Sarvesh,DC=local Restore object <cross-ref> Schema and Forest Recovery: Changes made to Schema can t be reversed. Schema partition can t be authoritatively restored. Attributes that have been added to Schema can be disabled but can t be removed. If you have made any changes to Schema using some custom application or there is malfunction in Schema updates then restoring from backup and re-promoting all DCs is the only option left. Best practice for Schema Updates: 1. Before you begin updating Schema even for well-known applications like Exchange, Lync etc., it is recommended to a. disable the Outbound replication i. repadmin /options <DC_Name> +DISABLE_OUTBOUND_REPL b. Verify if all changes have been as expected c. Enable the outbound replication i. Repadmin /options <DC_Name> -DISABLE_OUTBOUND_REPL

17 2. Let us assume Schema changes are not successful for the DC that had outbound replication disabled. Do the following: a. Keep the outbound replication disabled. b. Login to another DC on the same domain. c. Seize the Schema Master FSMO role d. Perform metadata cleanup for the DC that had failed Schema updates e. Format the DC that had failed schema updates 3. We suggest to keep Schema Admins group empty, add the service or administrator account to Schema Admins group when necessary. This would reduce Schema modification chances even by mistake Recover forest from unrecoverable state: Backups, backups and backups are extremely critical for any organization. If you have made changes to Schema that has replicated across forest or there have been other changes like corruption that are not possible to reverse. In this case only option left is to restore every domain in the forest from backup and re-promote all other DCs in the forest. This needs to be done with extreme care as any change that are made after backup will be lost. Please ensure that Active Directory forest backup (i.e. backup of each domain) is taken before performing any major activity and roll back steps are clearly defined and tested. -o-

Active Directory Disaster Recovery Workshop. Lab Manual Revision 1.7

Active Directory Disaster Recovery Workshop. Lab Manual Revision 1.7 Active Directory Disaster Recovery Workshop Lab Manual Revision 1.7 Table of Contents LAB 1: Introduction to the Lab Environment... 1 Goals... 1 Introduction... 1 Exercise 1: Inspect the Lab Environment...

More information

Directory Backup and Restore

Directory Backup and Restore Directory Backup and Restore Overview Active Directory is backed up as part of system state, a collection of system components that depend on each other. You must backup and restore system state components

More information

Active Directory Restoration

Active Directory Restoration Active Directory Restoration This document outlines the steps required to recover an Active Directory Infrastructure, running on Windows 2003 R2 Server Standard. The scope of this document covers the scenario

More information

Microsoft Virtual Labs. Active Directory New User Interface

Microsoft Virtual Labs. Active Directory New User Interface Microsoft Virtual Labs Active Directory New User Interface 2 Active Directory New User Interface Table of Contents Active Directory New User Interface... 3 Exercise 1 User Management and Saved Queries...4

More information

Active Directory backup and restore with Acronis Backup & Recovery 11. Technical white paper. o o. Applies to the following editions: Advanced Server

Active Directory backup and restore with Acronis Backup & Recovery 11. Technical white paper. o o. Applies to the following editions: Advanced Server Active Directory backup and restore with Acronis Backup & Recovery 11 Technical white paper Applies to the following editions: Advanced Server Virtual Edition o o o Advanced Server SBS Edition Advanced

More information

Lesson Plans LabSim for Microsoft s Implementing a Server 2003 Active Directory Infrastructure

Lesson Plans LabSim for Microsoft s Implementing a Server 2003 Active Directory Infrastructure Lesson Plans LabSim for Microsoft s Implementing a Server 2003 Active Directory Infrastructure (Exam 70-294) Table of Contents Course Overview... 2 Section 1.1: Introduction to Active Directory... 3 Section

More information

Investigating the Use of Virtual Servers to Improve the Restoration Process of an Active Directory Forest

Investigating the Use of Virtual Servers to Improve the Restoration Process of an Active Directory Forest Copyright Tom Kline, Ryan Whyms 2007 This work is the intellectual property of the author. Permission is granted for this material to be shared for non-commercial, educational purposes, provided that this

More information

Can You Recover Active Directory from a Disaster?

Can You Recover Active Directory from a Disaster? Can You Recover Active Directory from a Disaster? Avril Salter 1. 8 0 0. 8 1 3. 6 4 1 5 w w w. s c r i p t l o g i c. c o m / s m b I T 2012 ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the

More information

Windows Server 2008 Active Directory Resource Kit

Windows Server 2008 Active Directory Resource Kit Windows Server 2008 Active Directory Resource Kit Stan Reimer, Mike Mulcare, Conan Kezema, Byron Wright w MS AD Team PREVIEW CONTENT This excerpt contains uncorrected manuscript from an upcoming Microsoft

More information

Microsoft. Jump Start. M11: Implementing Active Directory Domain Services

Microsoft. Jump Start. M11: Implementing Active Directory Domain Services Microsoft Jump Start M11: Implementing Active Directory Domain Services Rick Claus Technical Evangelist Microsoft Ed Liberman Technical Trainer Train Signal Jump Start Target Agenda Day One Day 1 Day 2

More information

This article was previously published under Q216498 SUMMARY

This article was previously published under Q216498 SUMMARY Article ID: 216498 - Last Review: September 11, 2011 - Revision: 12.0 How to remove data in Active Directory after an unsuccessful domain controller demotion System Tip This article applies to a different

More information

Keenan s brief Guide to AD Snapshots

Keenan s brief Guide to AD Snapshots Keenan s brief Guide to AD Snapshots Author: Keenan Buck Solutions Architect 1 P a g e K e e n a n B u c k Disclaimer CTCS expressly disclaims any liability, which may arise in any manner and to any party

More information

Protecting Active Directory

Protecting Active Directory Network Frontiers..... Protecting Active Directory..... Whitepaper Active Directory has become a very critical piece of every Windows organization. So critical in fact, that tolerance to downtime for an

More information

Windows Server 2003 Service Pack 1 (SP1) or later service packs Enhanced version of Ntdsutil.exe

Windows Server 2003 Service Pack 1 (SP1) or later service packs Enhanced version of Ntdsutil.exe Article ID: 216498 - Last Review: February 3, 2010 - Revision: 11.0 How to remove data in Active Directory after an unsuccessful domain controller demotion System Tip This article applies to a different

More information

Active Directory backup and restore with Acronis Backup & Recovery 10

Active Directory backup and restore with Acronis Backup & Recovery 10 Active Directory backup and restore with Acronis Backup & Recovery 10 Table of Contents 1. Introduction... 3 2. Backup and Recovery overview... 3 3. Active Directory backup... 3 4. Active Directory recovery...

More information

Windows Server 2012 AD Backup and Disaster Recovery Procedures

Windows Server 2012 AD Backup and Disaster Recovery Procedures Windows Server 2012 AD Backup and Disaster Recovery Procedures Peter Van Keymeulen, 2012 EDE Consulting ICT Infrastructure Architect Version: 1.0 1. Contents 1. CONTENTS... 2 2. CONTACT INFORMATION...

More information

Windows Server 2008 Active Directory Resource Kit

Windows Server 2008 Active Directory Resource Kit Windows Server 2008 Active Directory Resource Kit Stan Reimer, Conan Kezema, Mike Mulcare, and Byron Wright with the Microsoft Active Directory Team To learn more about this book, visit Microsoft Learning

More information

Backup and Restore of CONFIGURATION Object on Windows 2008

Backup and Restore of CONFIGURATION Object on Windows 2008 Backup and Restore of CONFIGURATION Object on Windows 2008 Technical Whitepaper Contents Introduction... 3 CONFIGURATION Backup... 3 Windows configuration objects... 3 Active Directory... 4 DFS... 4 DHCP

More information

Windows Server 2008R2 AD Backup and Disaster Recovery Procedures

Windows Server 2008R2 AD Backup and Disaster Recovery Procedures Windows Server 2008R2 AD Backup and Disaster Recovery Procedures Peter Van Keymeulen, 2012 EDE Consulting ICT Infrastructure Architect Version: 3.3 1. Contents 1. CONTENTS... 2 2. CONTACT INFORMATION...

More information

Windows Server 2012 AD Backup and Disaster Recovery Procedures

Windows Server 2012 AD Backup and Disaster Recovery Procedures Windows Server 2012 AD Backup and Disaster Recovery Procedures Peter Van Keymeulen, 2013 EDE Consulting ICT Infrastructure Architect Version: 1.2 1. Contents 1. CONTENTS... 2 2. CONTACT INFORMATION...

More information

Module 10: Maintaining Active Directory

Module 10: Maintaining Active Directory Module 10: Maintaining Active Directory Contents Overview 1 Lesson: Introduction to Maintaining Active Directory 2 Lesson: Moving and Defragmenting the Active Directory Database 6 Lesson: Backing Up Active

More information

Active Directory Objectives

Active Directory Objectives Exam Objectives Active Directory Objectives Exam 70 640: TS: Windows Server 2008 Active Directory, Configuring This certification exam measures your ability to manage Windows Server 2008 Active Directory

More information

Core Active Directory Administration

Core Active Directory Administration Chapter 7 Core Active Directory Administration In this chapter: Tools for Managing Active Directory............................157 Using the Active Directory Users And Computers Tool............162 Managing

More information

LearnKey's Windows Server 2003 Active Directory Infrastructure with Dale Brice-Nash

LearnKey's Windows Server 2003 Active Directory Infrastructure with Dale Brice-Nash LearnKey's Windows Server 2003 Active Directory Infrastructure with Dale Brice-Nash Syllabus Course Description 5 Sessions - 15 Hours of Interactive Training The Windows Server 2003 Active Directory Infrastructure

More information

How to install Small Business Server 2003 in an existing Active

How to install Small Business Server 2003 in an existing Active Page 1 of 6 How to install Small Business Server 2003 in an existing Active Directory domain INTRODUCTION This article describes how to install a Microsoft Windows Small Business Server (SBS) 2003-based

More information

IT ACADEMY LESSON PLAN. Microsoft Windows Server Active Directory

IT ACADEMY LESSON PLAN. Microsoft Windows Server Active Directory 2008 IT ACADEMY LESSON PLAN Microsoft Windows Server Active Directory Microsoft Windows Server 2008 Active Directory: Lesson Plans Introduction Preparing to teach a course on Microsoft Windows Server 2008

More information

WHITE PAPER: ENTERPRISE SOLUTIONS. Quick Recovery of Microsoft Active Directory Using Symantec Backup Exec 11d Agent for Active Directory

WHITE PAPER: ENTERPRISE SOLUTIONS. Quick Recovery of Microsoft Active Directory Using Symantec Backup Exec 11d Agent for Active Directory WHITE PAPER: ENTERPRISE SOLUTIONS Quick Recovery of Microsoft Active Directory Using Symantec Backup Exec 11d For use with Microsoft Windows 2000 Server and Windows Server 2003 White Paper: Enterprise

More information

Backup and Disaster Recovery Restoration Guide

Backup and Disaster Recovery Restoration Guide Backup and Disaster Recovery Restoration Guide Page 1 Table of Contents Table of Contents...2 Terms of Use...3 BDR...4 Creating Point-in-Time Restoration Volumes...4 Mounting a Restoration Volume...4 Dismounting

More information

2003 O/S. when installed (gets installed as a stand alone server) to promoting to D.C. We have to install A.D.

2003 O/S. when installed (gets installed as a stand alone server) to promoting to D.C. We have to install A.D. ACTIVE DIRECTORY AD: Is a centralized database where it contains the information about the objects like users, groups, computers, printers etc. AD is a centralized hierarchical Directory Database. AD is

More information

Introduction. Versions Used Windows Server 2003

Introduction. Versions Used Windows Server 2003 Training Installing Active Directory Introduction As SonicWALL s products and firmware keeps getting more features that are based on integration with Active Directory, e.g., Active Directory Connector

More information

TAC 9710 - Virtualizing a Windows Active Directory Domain Infrastructure. Chris Skinner Technical Instructor Education Services VMware, Inc.

TAC 9710 - Virtualizing a Windows Active Directory Domain Infrastructure. Chris Skinner Technical Instructor Education Services VMware, Inc. TAC 9710 - Virtualizing a Windows Active Directory Domain Infrastructure Chris Skinner Technical Instructor Education Services VMware, Inc. Why Virtualize Active Directory? Hardware Consolidation Test

More information

9. Which is the command used to remove active directory from a domain controller? Answer: Dcpromo /forceremoval

9. Which is the command used to remove active directory from a domain controller? Answer: Dcpromo /forceremoval 1. What is Active Directory schema? Answer: The schema is the Active Directory component that defines all the objects and attributes that the directory service uses to store data. 2. What is global catalog

More information

Introduction to Auditing Active Directory

Introduction to Auditing Active Directory Introduction to Auditing Active Directory Prepared and presented by: Tanya Baccam CPA, CITP, CISSP, CISA, CISM, GPPA, GCIH, GSEC, OCP DBA Baccam Consulting LLC tanya@securityaudits.org Objectives Understand

More information

Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services

Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services Course Number: 6425B Course Length: 5 Days Course Overview This five-day course provides to teach Active Directory Technology

More information

Planning Domain Controller Capacity

Planning Domain Controller Capacity C H A P T E R 4 Planning Domain Controller Capacity Planning domain controller capacity helps you determine the appropriate number of domain controllers to place in each domain that is represented in a

More information

Active Directory Cookbook

Active Directory Cookbook Covers Windows 2000 & Windows Server 2003 s for Active Directory Administrators and Developers Active Directory Cookbook Robbie Allen Chapter 16 CHAPTER 16 Backup, Recovery, DIT Maintenance, and Deleted

More information

Active Directory Infrastructure Design Document

Active Directory Infrastructure Design Document Active Directory Infrastructure Design Document Written By Sainath KEV Microsoft MVP Directory Services Microsoft Author TechNet Magazine, Microsoft Operations Framework Microsoft Speaker - Singapore Document

More information

Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services

Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services Course Number: 6425C Course Length: 5 Days Course Overview This five-day course provides in-depth training on implementing,

More information

70-640 R4: Configuring Windows Server 2008 Active Directory

70-640 R4: Configuring Windows Server 2008 Active Directory 70-640 R4: Configuring Windows Server 2008 Active Directory Course Introduction Course Introduction Chapter 01 - Installing the Active Directory Role Lesson: What is IDA? What is Active Directory Identity

More information

Setting up Active Directory Domain Services

Setting up Active Directory Domain Services Setting up Active Directory Domain Services Tom Brett CREATING A SINGLE DOMAIN FOREST Once you have Windows Server 2008 R2 installed, it s pretty easy to create a domain you simply run the domain controller

More information

RSA Authentication Manager 7.1 Microsoft Active Directory Integration Guide

RSA Authentication Manager 7.1 Microsoft Active Directory Integration Guide RSA Authentication Manager 7.1 Microsoft Active Directory Integration Guide Contact Information Go to the RSA corporate web site for regional Customer Support telephone and fax numbers: www.rsa.com Trademarks

More information

VMware and VSS: Application Backup and Recovery

VMware and VSS: Application Backup and Recovery Best Tools : VMware ESX Virtualization Management VMware and VSS: Application Backup and Recovery Written by: Anton Gostev Product Manager Veeam Software CONTENTS EXECUTIVE SUMMARY... 3 VSS AWARE BACKUP

More information

How to monitor AD security with MOM

How to monitor AD security with MOM How to monitor AD security with MOM A article about monitor Active Directory security with Microsoft Operations Manager 2005 Anders Bengtsson, MCSE http://www.momresources.org November 2006 (1) Table of

More information

ILTA 2013 - HAND 6B. Upgrading and Deploying. Windows Server 2012. In the Legal Environment

ILTA 2013 - HAND 6B. Upgrading and Deploying. Windows Server 2012. In the Legal Environment ILTA 2013 - HAND 6B Upgrading and Deploying Windows Server 2012 In the Legal Environment Table of Contents Purpose of This Lab... 3 Lab Environment... 3 Presenter... 3 Exercise 1 Add Roles and Features...

More information

SAM 8.0 Backup and Restore Guide. SafeNet Integration Guide

SAM 8.0 Backup and Restore Guide. SafeNet Integration Guide SAM 8.0 Backup and Restore Guide SafeNet Integration Guide Revision A November 2012 SAM 8.0 Backup and Restore Guide - SafeNet Integration Guide Introduction Copyright 2012 SafeNet, Inc. All rights reserved.

More information

SAM Backup and Restore Guide. SafeNet Integration Guide

SAM Backup and Restore Guide. SafeNet Integration Guide SAM Backup and Restore Guide SafeNet Integration Guide April 2011 Introduction Copyright 2011 SafeNet, Inc. All rights reserved. All attempts have been made to make the information in this document complete

More information

TestOut Course Outline for: Windows Server 2008 Active Directory

TestOut Course Outline for: Windows Server 2008 Active Directory TestOut Course Outline for: Windows Server 2008 Active Directory CONTENTS: Videos: 61 (5:06) Demonstrations: 72 (6:38) Simulations: 61 Fact Sheets: 105 Exams: 47 0.0 Active Directory Overview 0.1 Active

More information

SETTING UP ACTIVE DIRECTORY (AD) ON WINDOWS 2008 FOR DOCUMENTUM @ EROOM

SETTING UP ACTIVE DIRECTORY (AD) ON WINDOWS 2008 FOR DOCUMENTUM @ EROOM SETTING UP ACTIVE DIRECTORY (AD) ON WINDOWS 2008 FOR DOCUMENTUM @ EROOM Abstract This paper explains how to setup Active directory service on windows server 2008.This guide also explains about how to install

More information

How to. Install Active Directory. Server 2003

How to. Install Active Directory. Server 2003 How to Install Active Directory on Server 2003 Table of Content HOW DO I INSTALL ACTIVE DIRECTORY ON MY WINDOWS SERVER 2003 SERVER?... 2 STEP 1: CONFIGURE THE COMPUTER'S SUFFIX... 3 STEP 2: CONFIGURING

More information

11 Things to Know About Active Directory Recovery

11 Things to Know About Active Directory Recovery 11 Things to Know About Active Directory Recovery White Paper written by Guido Grillenmeier, HP and Shawn Barker Windows Management Quest Software, Inc. Copyright Quest Software, Inc. 2005. All rights

More information

Active Directory Forest Disaster Recovery: What You Don t Know Will Hurt You

Active Directory Forest Disaster Recovery: What You Don t Know Will Hurt You Active Directory Forest Disaster Recovery: What You Don t Know Will Hurt You By Gary L. Olsen Sponsored by Table of Contents AD Disasters... 1 AD Forest Failure Causes and Case Studies... 2 The Danger

More information

How to troubleshoot Active Directory operations that fail with error 8456 or 8457: "The...

How to troubleshoot Active Directory operations that fail with error 8456 or 8457: The... Page 1 sur 7 Article ID: 2023007 - Last Review: January 27, 2011 - Revision: 11.0 How to troubleshoot Active Directory operations that fail with error 8456 or 8457: "The source destination server is currently

More information

TestOut Server Pro: Manage and Administer English 3.1.x LESSON PLAN. Revised 2016/05/17

TestOut Server Pro: Manage and Administer English 3.1.x LESSON PLAN. Revised 2016/05/17 TestOut Server Pro: Manage and Administer English 3.1.x LESSON PLAN Revised 2016/05/17 Table of Contents Course Overview... 4 Course Introduction for Instructors... 5 Section 1.1: Active Directory Overview...

More information

Searching for accepting?

Searching for accepting? If you have set up a domain controller previously with Windows 2000 Server, or Windows Server 2003, then you would be familiar with the dcpromo.exe command also be used to set up a Domain Controller on

More information

Active Directory 2008 Operations

Active Directory 2008 Operations The Essentials Series Active Directory 2008 Operations sponsored by by Greg Shields Understanding Active Directory Recovery in Windows Server 2008...1 Backing Up AD...1 Full Server Recovery of a Domain

More information

Implementing, Managing, and Maintaining a Microsoft Windows Server 2003 Network Infrastructure

Implementing, Managing, and Maintaining a Microsoft Windows Server 2003 Network Infrastructure Question Number (ID) : 1 (jaamsp_mngnwi-025) Lisa would like to configure five of her 15 Web servers, which are running Microsoft Windows Server 2003, Web Edition, to always receive specific IP addresses

More information

Module 2: Implementing an Active Directory Forest and Domain Structure

Module 2: Implementing an Active Directory Forest and Domain Structure Contents Overview 1 Lesson: Creating a Forest and Domain Structure 2 Lesson: Examining Active Directory Integrated DNS 22 Lesson: Raising Forest and Domain Functional Levels 36 Lesson: Creating Trust Relationships

More information

How do I install Active Directory on my Windows Server 2003 server?

How do I install Active Directory on my Windows Server 2003 server? How do I install Active Directory on my Windows Server 2003 server? Here is a quick list of what you must have: An NTFS partition with enough free space An Administrator's username and password The correct

More information

Restore von Active Directory mit einer von HP entwickelten Lösung

Restore von Active Directory mit einer von HP entwickelten Lösung estore von Active Directory mit einer von HP entwickelten Lösung (ecovering from Active Directory Disasters) Guido Grillenmeier Senior Consultant Technology Solutions Group Hewlett-Packard Agenda hat is

More information

Number: 70-640 Passing Score: 700 Time Limit: 145 min 70-640

Number: 70-640 Passing Score: 700 Time Limit: 145 min 70-640 Number: 70-640 Passing Score: 700 Time Limit: 145 min 70-640 Exam A QUESTION 1 You have a single Active Directory domain. All domain controllers run Windows Server 2008 and are configured as DNS servers.

More information

Presenter s name here Date of presentation (optional) Windows Security and Domains for Experion

Presenter s name here Date of presentation (optional) Windows Security and Domains for Experion Presenter s name here Date of presentation (optional) Windows Security and Domains for Experion Today s Webinar Agenda Overview of Domains Common Setup of a Domain in an Experion Environment Best Practices

More information

6425C - Windows Server 2008 R2 Active Directory Domain Services

6425C - Windows Server 2008 R2 Active Directory Domain Services Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services Introduction This five-day instructor-led course provides in-depth training on configuring Active Directory Domain Services

More information

Don t Let Your Active Directory Forest Burn Around You: The Essential Planning Guide for AD Forest Recovery. By Brian Desmond

Don t Let Your Active Directory Forest Burn Around You: The Essential Planning Guide for AD Forest Recovery. By Brian Desmond Don t Let Your Active Directory Forest Burn Around You: The Essential Planning Guide for AD Forest Recovery By Brian Desmond Contents Don t Let Your Active Directory Forest Burn Around You:...2 The Problem...3

More information

UNIT 5 ADDITIONAL PROJECTS BEFORE YOU BEGIN. Installing a Replica Domain Controller. You want to improve fault tolerance and performance on

UNIT 5 ADDITIONAL PROJECTS BEFORE YOU BEGIN. Installing a Replica Domain Controller. You want to improve fault tolerance and performance on UNIT 5 ADDITIONAL PROJECTS BEFORE YOU BEGIN The RODC must be configured to use the RWDC as its Preferred DNS Server. Active Directory is installed on the RWDC. The RODC must be a member server within the

More information

Create a printer preference in the Default Domain Policy that sets a default printer as laser5.nutex.com and designate the policy as Enforced.

Create a printer preference in the Default Domain Policy that sets a default printer as laser5.nutex.com and designate the policy as Enforced. Page 1 of 218 Item: 1 (Ref:Cert-70-640.3.4.10) You are the administrator of the nutex.com domain. Each department has its own Organizational Unit (OU). Click on the Exhibit(s) button to view the Active

More information

Moving the TRITON Reporting Databases

Moving the TRITON Reporting Databases Moving the TRITON Reporting Databases Topic 50530 Web, Data, and Email Security Versions 7.7.x, 7.8.x Updated 06-Nov-2013 If you need to move your Microsoft SQL Server database to a new location (directory,

More information

Windows Server 2003 Active Directory: Perspective

Windows Server 2003 Active Directory: Perspective Mary I. Hubley, MaryAnn Richardson Technology Overview 25 September 2003 Windows Server 2003 Active Directory: Perspective Summary The Windows Server 2003 Active Directory lies at the core of the Windows

More information

How the Active Directory Installation Wizard Works

How the Active Directory Installation Wizard Works How the Active Directory Installation Wizard Works - Directory Services: Windows Serv... Page 1 of 18 How the Active Directory Installation Wizard Works In this section Active Directory Installation Wizard

More information

Active Directory Diagnostic Tool

Active Directory Diagnostic Tool Active Directory Diagnostic Tool Active Directory Diagnostic Tool (Ntdsutil.exe)...2 Invoking Ntdsutil s and Parameters...2 How to Use Ntdsutil Menu s...2 How Ntdsutil Processes Input...2 How to Use Arguments

More information

Introduction to Active Directory Services

Introduction to Active Directory Services Introduction to Active Directory Services Tom Brett A DIRECTORY SERVICE A directory service allow businesses to define manage, access and secure network resources including files, printers, people and

More information

NYSeMail Office 365 Administration Guide for Agencies

NYSeMail Office 365 Administration Guide for Agencies NYSeMail Office 365 Administration Guide for Agencies Office 365 Overview... 34 What is included... 34 Software Requirements... 34 Message Limits... 34 Provisioning... 34 Archive and Retention Policy...

More information

Mailbox Recovery for Microsoft Exchange 2000 Server. Published: August 2000 Updated: July 2002 Applies To: Microsoft Exchange 2000 Server SP3

Mailbox Recovery for Microsoft Exchange 2000 Server. Published: August 2000 Updated: July 2002 Applies To: Microsoft Exchange 2000 Server SP3 Mailbox Recovery for Microsoft Exchange 2000 Server Published: August 2000 Updated: July 2002 Applies To: Microsoft Exchange 2000 Server SP3 Copyright The information contained in this document represents

More information

Dell Active Administrator 8.0

Dell Active Administrator 8.0 What s new in Dell Active Administrator 8.0 January 2016 Dell Active Administrator 8.0 is the upcoming release of Dell Software's complete solution for managing Microsoft Active Directory security auditing,

More information

Chapter 3: Building Your Active Directory Structure Objectives

Chapter 3: Building Your Active Directory Structure Objectives Chapter 3: Building Your Active Directory Structure Page 1 of 46 Chapter 3: Building Your Active Directory Structure Objectives Now that you have had an introduction to the concepts of Active Directory

More information

Advanced Audit Policy Configurations for LT Auditor+ Reference Guide

Advanced Audit Policy Configurations for LT Auditor+ Reference Guide Advanced Audit Policy Configurations for LT Auditor+ Reference Guide Contents WINDOWS AUDIT POLICIES REQUIRED FOR LT AUDITOR+....3 ACTIVE DIRECTORY...3 Audit Policy for the Domain...3 Advanced Auditing

More information

MS-6425C - Configuring Windows Server 2008 Active Directory Domain Services

MS-6425C - Configuring Windows Server 2008 Active Directory Domain Services MS-6425C - Configuring Windows Server 2008 Active Directory Domain Services Table of Contents Introduction Audience At Clinic Completion Prerequisites Microsoft Certified Professional Exams Student Materials

More information

Using Logon Agent for Transparent User Identification

Using Logon Agent for Transparent User Identification Using Logon Agent for Transparent User Identification Websense Logon Agent (also called Authentication Server) identifies users in real time, as they log on to domains. Logon Agent works with the Websense

More information

ITCertMaster. http://www.itcertmaster.com. Safe, simple and fast. 100% Pass guarantee! IT Certification Guaranteed, The Easy Way!

ITCertMaster. http://www.itcertmaster.com. Safe, simple and fast. 100% Pass guarantee! IT Certification Guaranteed, The Easy Way! ITCertMaster Safe, simple and fast. 100% Pass guarantee! http://www.itcertmaster.com IT Certification Guaranteed, The Easy Way! Exam : 070-640 Title : Windows Server 2008 Active Directory. Configuring

More information

Websense Support Webinar: Questions and Answers

Websense Support Webinar: Questions and Answers Websense Support Webinar: Questions and Answers Configuring Websense Web Security v7 with Your Directory Service Can updating to Native Mode from Active Directory (AD) Mixed Mode affect transparent user

More information

ACTIVE DIRECTORY REPLICATION: HOW IT WORKS

ACTIVE DIRECTORY REPLICATION: HOW IT WORKS ACTIVE DIRECTORY REPLICATION: HOW IT WORKS Active Directory is a great tool. And Now a days it hard to imagine a windows network without active directory. In this part we will see what active directory

More information

Creating a New Domain Tree in the Forest

Creating a New Domain Tree in the Forest Creating Domain Trees and Forests 163 Creating a New Domain Tree in the Forest 1. Open the Active Directory Installation Wizard by clicking Start Run, and typing dcpromo. Click the Use Advanced Mode Installation

More information

Course 6425C: Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services

Course 6425C: Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services Course 6425C: Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services Length: 5 Days Published: June 02, 2011 Language(s): English Audience(s): IT Professionals Level: 200

More information

Windows Server 2008 Active Directory Configuration (Exam 70-640)

Windows Server 2008 Active Directory Configuration (Exam 70-640) Windows Server 2008 Active Directory Configuration (Exam 70-640) Install, implement and configure Windows Server 2008 Active Directory domain. Complete day-to-day administration of Active Directory in

More information

Managing and Maintaining a Windows Server 2003 Network Environment

Managing and Maintaining a Windows Server 2003 Network Environment Managing and maintaining a Windows Server 2003 Network Environment. AIM This course provides students with knowledge and skills needed to Manage and Maintain a Windows Server 2003 Network Environment.

More information

locuz.com Microsoft Practice Active Directory Services

locuz.com Microsoft Practice Active Directory Services locuz.com Microsoft Practice Active Directory Services IT organizations are striving to deliver high performance to clients at all times, along with uninterrupted availability and flexibility to add new

More information

Get Success in Passing Your Certification Exam at first attempt!

Get Success in Passing Your Certification Exam at first attempt! Get Success in Passing Your Certification Exam at first attempt! Vendor: Microsoft Exam Code: 70-417 Exam Name: Microsoft Upgrading Your Skills to MCSA Windows Server 2012 Exam Version: Demo Question:

More information

Installation of MicroSoft Active Directory

Installation of MicroSoft Active Directory Installation of MicroSoft Active Directory Before you start following this article you must be aware this is simply a lab setup and you need to assign relevant ip address, hostnames & domain names which

More information

Dell Recovery Manager for Active Directory 8.6. User Guide

Dell Recovery Manager for Active Directory 8.6. User Guide Dell Recovery Manager for Active Directory 8.6 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

MOC 6436A: Designing Active Directory Infrastructure and Services in Windows Server 2008

MOC 6436A: Designing Active Directory Infrastructure and Services in Windows Server 2008 MOC 6436A: Designing Active Directory Infrastructure and Services in Windows Server 2008 Course Number: 6436A Course Length: 5 Days Course Overview At the end of this five-day course, students will learn

More information

Configuring Windows Server 2008 Active Directory

Configuring Windows Server 2008 Active Directory Configuring Windows Server 2008 Active Directory Course Number: 70-640 Certification Exam This course is preparation for the Microsoft Technical Specialist (TS) exam, Exam 70-640: TS: Windows Server 2008

More information

Topics. ADSIEDIT in ADUC

Topics. ADSIEDIT in ADUC 2008 AD Drilldown Topics RODCs Server Deletion Wizard AD snapshots 2008 AD backups Anti-deletion protection Fine-grained password policies Next closest site Server Core and AD ADSIEDIT in ADUC Read-Only

More information

Directory, Configuring

Directory, Configuring MCTS 70-640 Cert Guide: Windows Server 2008 Active Directory, Configuring Don Poulton Pearson 800 East 96th Street Indianapolis, Indiana 46240 USA iv MCTS 70-640 Cert Guide: Windows Server 2008 Active

More information

PASS4TEST 専 門 IT 認 証 試 験 問 題 集 提 供 者

PASS4TEST 専 門 IT 認 証 試 験 問 題 集 提 供 者 PASS4TEST 専 門 IT 認 証 試 験 問 題 集 提 供 者 http://www.pass4test.jp 1 年 で 無 料 進 級 することに 提 供 する Exam : 70-640 Title : Windows Server 2008 Active Directory. Configuring Vendors : Microsoft Version : DEMO NO.1 An

More information

Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services

Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services Course 6425B: Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services Length: 5 Days Language(s): English Audience(s): IT Professionals Level: 200 Technology: Windows Server

More information

WS 2008 R2 Active Directory: Diving in to the core

WS 2008 R2 Active Directory: Diving in to the core WS 2008 R2 Active Directory: Diving in to the core Siddharth Bhai Program Manager, Microsoft Corp Presented at the Windows Networking User Group on Feb 3, 2010. Agenda Windows Server 2008 R2 AD Recycle

More information

Course 6425B: Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services

Course 6425B: Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services Course 6425B: Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services About this Course This five-day instructor-led course provides to teach Active Directory Technology Specialists

More information

Microsoft Exchange 2003 Disaster Recovery Operations Guide

Microsoft Exchange 2003 Disaster Recovery Operations Guide Microsoft Exchange 2003 Disaster Recovery Operations Guide Microsoft Corporation Published: December 12, 2006 Author: Exchange Server Documentation Team Abstract This guide provides installation and deployment

More information

BMC Performance Manager Active Directory Best Practices White Paper

BMC Performance Manager Active Directory Best Practices White Paper BMC Performance Manager Active Directory Best Practices White Paper Problem The IT department delivers user authentication services to their internal and external customers. Users complain that they can

More information

SQL Server Protection

SQL Server Protection User Guide BackupAssist User Guides explain how to create and modify backup jobs, create backups and perform restores. These steps are explained in more detail in a guide s respective whitepaper. Whitepapers

More information

User Migration Tool. Note. Staging Guide for Cisco Unified ICM/Contact Center Enterprise & Hosted Release 9.0(1) 1

User Migration Tool. Note. Staging Guide for Cisco Unified ICM/Contact Center Enterprise & Hosted Release 9.0(1) 1 The (UMT): Is a stand-alone Windows command-line application that performs migration in the granularity of a Unified ICM instance. It migrates only Unified ICM AD user accounts (config/setup and supervisors)

More information