Keenan s brief Guide to AD Snapshots

Size: px
Start display at page:

Download "Keenan s brief Guide to AD Snapshots"

Transcription

1 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

2 Disclaimer CTCS expressly disclaims any liability, which may arise in any manner and to any party through publication of this document. Any party acting for or failing to act as a result of this document assumes full responsibility for any use made of the information contained herein. This publication does not constitute an endorsement of the product or products described. The configuration or configurations tested or described, may or may not be the only available solution. 2 P a g e K e e n a n B u c k

3 Document Control Version History Version Date Author Comments V0.1 21/07/2011 Keenan Buck Document Ownership and Approval Document Owner Keenan Buck Solutions Architect Document Authorisation Document Distribution Name Title Enquiries Any enquiries relating to this document should be directed to: Keenan Buck Phone: P a g e K e e n a n B u c k

4 Table of Contents Disclaimer... 2 Document Control... 3 Background... 5 Process 1 Creating a snapshot... 6 Process 2 Mounting your Active Directory Snapshot... 6 Process 3 Connecting your Active Directory snapshot... 7 Process 4 Disconnecting your Active Directory snapshot... 8 Process 5 Unmounting your Active Directory snapshot... 9 Using Active Directory Users and Computers DSA.msc Using ADSIEDIT.msc Using CSVDE.exe Using LDIFDE.exe Restoring Information P a g e K e e n a n B u c k

5 Background Windows Server 2008 has a new feature allowing administrators to create snapshots of the Active Directory database for offline use. With AD snapshots you can mount a backup of AD DS under a different set of ports and have read-only access to your backups through LDAP. There are quite a few scenarios for using AD snapshots. For example, if someone has changed properties of AD objects and you need to revert to their previous values, you can mount a copy of a previous snapshot to an alternate port and easily export the required attributes for every object that was changed. These values can then be imported into the running instance of AD DS. You can also restore deleted objects or simply view objects for diagnostic purposes. AD snapshots, when mounted and connected to, allow you to see how the AD Database looked like at the moment of the snapshot creation, what objects existed and other type of information. However, out of the box, it does not allow you to move or copy items or information from the snapshot to the live database. In order to do that you will need to manually export the relevant objects or attributes from the snapshot, and manually import them back to the live AD database. Overall, the process of creating and using the AD snapshot involves using the following procedure: 1. Either manually create or schedule a task that regularly runs NTDSUTIL to take snapshots of the volume that contains the AD DS database. 2. Run NTDSUTIL to list the snapshots that are available, and mount the snapshot that you want to view. 3. Run DSAMAIN to expose the snapshot volume as an LDAP server. I have listed out this process as follows: Process 1 Creating a snapshot Process 2 Mounting your Active Directory Snapshot Process 3 connecting your Active Directory snapshot Process 4 disconnecting your Active Directory snapshot Process 5 Unmounting your Active Directory snapshot This is a lot better than taking down the DC, rebooting into DSRM, restoring the System State from a backup, and then exporting the attributes. 5 P a g e K e e n a n B u c k

6 Process 1 Creating a snapshot Open CMD.exe, Ntdsutil, activate instance ntds, snapshot, create, list all. Process 2 Mounting your Active Directory Snapshot Before connecting to the snapshot we need to mount it. By looking at the results of the List All command in above step, identify the snapshot that you wish to mount, and note the number next to it. Type Ntdsutil, Snapshot, List all, Mount 2. The snapshot gets mounted to c:\$snap_ _volumec$. Now you can refer this path to see the objects in these snapshots. 6 P a g e K e e n a n B u c k

7 Process 3 Connecting your Active Directory snapshot In order to connect to the AD snapshot you've mounted you will need to use the DSAMAIN command. DSAMAIN is a command-line tool that is built into Windows Server It is available if you have the Active Directory Domain Services (AD DS) or Active Directory Lightweight Directory Services (AD LDS) server role installed. After using DSAMAIN to expose the information inside the AD snapshot, you can use any GUI tool that can connect to the specified port, tools such as Active Directory Users and Computers (DSA.msc), ADSIEDIT.msc, LDP.exe or others. You can also connect to it by using command line tools such as LDIFDE or CSVDE, tools that allow you to export information from that database. dsamain -dbpath " c:\$snap_ _volumec$\windows\ntds\ntds.dit" - ldapport The above command will allow you to access the database using port P a g e K e e n a n B u c k

8 Now you can use LDP.exe tool to connect to this mounted instance. Process 4 Disconnecting your Active Directory snapshot In order to disconnect from the AD snapshot all you need to do is to type CTRL+C at the DSAMAIN command prompt window. You'll get a message indicating that the DS shut down successfully. 8 P a g e K e e n a n B u c k

9 Process 5 Unmounting your Active Directory snapshot Run command, Ntdsutil, Snapshot, List all, Unmount 2. 9 P a g e K e e n a n B u c k

10 These snapshots can be stored on the local hard disk of the Domain Controller (DC), or moved to an offline type of storage In all the following examples we will use port I have also created an OU called "Dev" in my test domain, and placed a few users in it. I've created a snapshot, and afterwards I have made some changes on the Dev users in the live AD. Using Active Directory Users and Computers DSA.msc Probably the easiest to use to visually see most of the needed information found in the snapshot. The benefit of using this tool in Windows Server 2008 is the fact that is now has some of ADSIEDIT's functionality built in, allowing you to view almost all the attributes for objects in the AD Domain partition. To use DSA.msc on an AD snapshot follow these steps: 1. Log on as a member of the Domain Admins group to the Windows Server 2008 R2 Domain Controller where you've mounted the AD snapshot. 2. Click Start, in the search box type DSA.msc and press Enter. 3. You'll see the live AD. Feel free to browse it. We'll use this instance of DSA.msc as a reference to the snapshot. 4. Repeat step #2. 5. In the second instance of DSA.msc, right-click on the domain name and select Change Domain Controller. 10 P a g e K e e n a n B u c k

11 6. In the Change Directory Server window, click on the <Type a Directory Server name[:port] here> line, and when it turns to a writable text, change it to the name of the server and port number you've used in DSAMAIN. In our case Server1: When you press Enter, the application will perform a check on the specified target, and if all is ok, you'll see the line turn "Online". Press Ok. 8. Open the 2 instances of DSA.msc side by side, you'll see that the second one is actually read-only. You cannot create or change any object. Even though the X button seems to be still available for object deletion, it won't work. 11 P a g e K e e n a n B u c k

12 9. If you open the properties window for a user ("isuser1" from the Anchor Users\Corporate & Shared Services\Information Services OU in our case) you'll see the attribute values in the snapshot version as grayed out. You can use this information to manually edit values in the live AD database, based upon the values you see in the snapshot version. 10. When done, close the second instance of DSA.msc. 12 P a g e K e e n a n B u c k

13 Using ADSIEDIT.msc The major benefit of ADSIEDIT.msc over DSA.msc is the fact that it can be used to connect to other AD partitions the Configuration partition and the Schema partition, as well as to the Domain partition. It too allows for graphical browsing for objects and attributes. Note: ADSIEDIT.msc is now included with Windows Server To use ADSIEDIT.msc on an AD snapshot follow these steps: 1. Log on as a member of the Domain Admins group to the Windows Server 2008 Domain Controller where you've mounted the AD snapshot. 2. Click Start, in the search box type ADSIEDIT.msc and press Enter. 3. In the ADSIEDIT window, right-click ADSI Edit and select Connect To. 13 P a g e K e e n a n B u c k

14 4. In the Connection Settings window, enter the name of the server and port number you've used in DSAMAIN. In our case WIN2008-DC1: When done, press Ok. 5. If all is ok, you'll see the AD snapshot information appear as a hierarchical tree on the left-hand side pane. Feel free to browse the tree and go to the right OU and object you need to look at. Note that here too, the information is read-only. 6. When done, close the ADSIEDIT.msc. 14 P a g e K e e n a n B u c k

15 As mentioned above, by using ADSIEDIT.msc you can see more than the Default naming context the AD Domain partition. You can use it to also connect to the Configuration partition and the Schema partition. Manually editing objects or restring them back to the Live Active Directory In this example and for all the following examples I will use port I have also created an OU called "Dev" in my test domain which is named ctcslab. I have placed a few users in it. I have also created a snapshot, and afterwards I have made some changes on the Dev users in the live AD. While both CSVDE and LDIFDE have almost the same syntax, here are some details about the relevant switches we're going to use for these examples. Note that there are many other options, however they are beyond the scope of this article. The -f switch specifies the filename. For example: -f c:'test.csv or -f c:'test.ldf. The -s switch specifies the server to connect to. For example: -s WIN2008-dc1. The t switch specifies the LDAP port to use. For example: -t The -d switch allows you to focus the export on one particular object or OU. For example, exporting just the "Dev" OU and not the entire Active Directory domain: -d "ou=dev,dc=ctcslab,dc=local", or exporting the user "James" in the "Dev" OU: -d "cn=james,ou=dev,dc=ctcslab,dc=local". The -r switch allows you to filter based upon object class of any other LDAP-type filter. For example: -r "(objectclass=user)". The -l switch (lower case "L") specifies the attributes to export. For example: -l telephonenumber. 15 P a g e K e e n a n B u c k

16 Using CSVDE.exe This tool is a command line tool that allows exporting of virtually any object or attribute from the AD database (or snapshot in this case). CSVDE.exe exports the data into CSV-based (Comma Separated Value) files. This makes it easy for usage in Excel or with a text editor. CSVDE does not work with passwords, so you cannot use it to export passwords from the database. Also, CSVDE does not allow the editing or deleting of existing objects, even though that is not a concern when exporting objects (unless you plan to import that information back to the live AD). To use CSVDE.exe on an AD snapshot follow these steps: 1. Log on as a member of the Domain Admins group to the Windows Server 2008 Domain Controller where you've mounted the AD snapshot. 2. Click Start, in the search box type CMD and press Enter. First, we'll export the data from the live AD database by running this command: C:'Users'Administrator>csvde -d "cn=james,ou=dev,dc=ctcslab,dc=local" -r "(objectclass=user)" -l telephonenumber -f c:'test.csv Connecting to "(null)" Logging in as current user using SSPI Exporting directory to file c:'test.csv Searching for entries... Writing out entries. Export Completed. Post-processing in progress... 1 entries exported The command has completed successfully Next, we will use the same command, this time to connect to the AD snapshot at port 10389: C:'Users'Administrator>csvde -s WIN2008-dc1 -t d "cn=james,ou=dev,dc=ctcslab,dc=local" -r "(objectclass=user)" -l telephonenumber -f c:'testsnap.csv Connecting to "WIN2008-dc1" Logging in as current user using SSPI 16 P a g e K e e n a n B u c k

17 Exporting directory to file c:'testsnap.csv Searching for entries... Writing out entries Export Completed. Post-processing in progress... 1 entries exported The command has completed successfully Looking at the resulting files, we see the difference in the information: See links below for detailed information about the usage of this command. Using LDIFDE.exe Like CSVDE.exe, this tool is a command line tool that allows exporting of virtually any object or attribute from the AD database (or snapshot in this case). LDIFDE.exe exports the data into LDIF-based (LDAP Data Interchange Format) files. LDIF files are a cross-platform standard. This provides a method to populate Active Directory with data from other directory services. Unlike CSV files, LDIF files cannot be used in Excel, but can be opened with a text editor. One of the major benefits of LDIFDE over CSVDE is that you can modify existing objects and even delete objects with LDIFDE. However, LDIFDE doesn t support changing Group Membership, and like CSVDE, it does not work with passwords, so you cannot use it to export passwords from the database. To use LDP.exe on an AD snapshot follow these steps: 1. Log on as a member of the Domain Admins group to the Windows Server 2008 Domain Controller where you've mounted the AD snapshot. 2. Click Start, in the search box type CMD and press Enter. 17 P a g e K e e n a n B u c k

18 First, we will export the data from the live AD database by running this command: C:'Users'Administrator>ldifde -d "cn=james,ou=dev,dc=ctcslab,dc=local" -r "(objectclass=user)" -l telephonenumber -f c:'test.ldf Connecting to "WIN2008-DC1.CtcsLab.local" Logging in as current user using SSPI Exporting directory to file c:'test.ldf Searching for entries... Writing out entries. 1 entries exported The command has completed successfully Next, we will use the same command, this time to connect to the AD snapshot at port 10389: C:'Users'Administrator>ldifde -s WIN2008-dc1 -t d "cn=james,ou=dev,dc=ctcslab,dc=local" -r "(objectclass=user)" -l telephonenumber -f c:'testsnap.ldf Connecting to "WIN2008-dc1" Logging in as current user using SSPI Exporting directory to file c:'testsnap.ldf Searching for entries... Writing out entries. 1 entries exported The command has completed successfully 18 P a g e K e e n a n B u c k

19 Looking at the resulting files, we see the difference in the information: Restoring Information You can take the information found in your exported files and manually insert them back to the Active Directory live database. 19 P a g e K e e n a n B u c k

20 END 20 P a g e K e e n a n B u c k

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

Step-by-Step Guide to Active Directory Bulk Import and Export

Step-by-Step Guide to Active Directory Bulk Import and Export Page 1 of 12 TechNet Home > Windows Server TechCenter > Identity and Directory Services > Active Directory > Step By Step Step-by-Step Guide to Active Directory Bulk Import and Export Published: September

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

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

BlackShield ID. QUICKStart Guide. Integrating Active Directory Lightweight Services

BlackShield ID. QUICKStart Guide. Integrating Active Directory Lightweight Services QUICKStart Guide Integrating Active Directory Lightweight Services 2010 CRYPTOCard Corp. All rights reserved. http://www.cryptocard.com Trademarks CRYPTOCard, CRYPTO Server, CRYPTO Web, CRYPTO Kit, CRYPTO

More information

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

Integration Guide. SafeNet Authentication Service. Integrating Active Directory Lightweight Services

Integration Guide. SafeNet Authentication Service. Integrating Active Directory Lightweight Services SafeNet Authentication Service Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

Module 1: Introduction to Active Directory Infrastructure

Module 1: Introduction to Active Directory Infrastructure Module 1: Introduction to Active Directory Infrastructure Contents Overview 1 Lesson: The Architecture of Active Directory 2 Lesson: How Active Directory Works 10 Lesson: Examining Active Directory 19

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

Introduction... 1. Installing and Configuring the LDAP Server... 3. Configuring Yealink IP Phones... 30. Using LDAP Phonebook...

Introduction... 1. Installing and Configuring the LDAP Server... 3. Configuring Yealink IP Phones... 30. Using LDAP Phonebook... Introduction... 1 Installing and Configuring the LDAP Server... 3 OpenLDAP... 3 Installing the OpenLDAP Server... 3 Configuring the OpenLDAP Server... 4 Configuring the LDAPExploreTool2... 8 Microsoft

More information

CONFIGURING TARGET ACTIVE DIRECTORY DOMAIN FOR AUDIT BY NETWRIX AUDITOR

CONFIGURING TARGET ACTIVE DIRECTORY DOMAIN FOR AUDIT BY NETWRIX AUDITOR CONFIGURING TARGET ACTIVE DIRECTORY DOMAIN FOR AUDIT BY NETWRIX AUDITOR TECHNICAL ARTICLE Product Version: 5.0 July 2013. Legal Notice The information in this publication is furnished for information use

More information

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users SyAM Management Utilities and Non-Admin Domain Users Some features of SyAM Management Utilities, including Client Deployment and Third Party Software Deployment, require authentication credentials with

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

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

The following gives an overview of LDAP from a user's perspective.

The following gives an overview of LDAP from a user's perspective. LDAP stands for Lightweight Directory Access Protocol, which is a client-server protocol for accessing a directory service. LDAP is a directory service protocol that runs over TCP/IP. The nitty-gritty

More information

Active Directory Forest Recovery

Active Directory Forest Recovery 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

More information

Module 4: Implementing User, Group, and Computer Accounts

Module 4: Implementing User, Group, and Computer Accounts Module 4: Implementing User, Group, and Computer Accounts Contents Overview 1 Lesson: Introduction to Accounts 2 Lesson: Creating and Managing Multiple Accounts 8 Lesson: Implementing User Principal Name

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

FastPass Password Manager Version 3.5.1

FastPass Password Manager Version 3.5.1 FastPass Password Manager Version 3.5.1 Document Title Delegating permissions in Active Directory Document Classification Confidential Document Revision B Document Status Final Document Date August 21,

More information

Symantec NetBackup Blueprints

Symantec NetBackup Blueprints Symantec NetBackup Blueprints Blueprint for Microsoft Active Directory Symantec Education Services Symantec NetBackup Blueprints 1 Symantec NetBackup Blueprints FEEDBACK FEEDBACK Please hide this slide

More information

LDAP Server Configuration Example

LDAP Server Configuration Example ATEN Help File LDAP Server Configuration Example Introduction The KVM Over the NET switch allows log in authentication and authorization through external programs. This chapter provides an example of how

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

Administering Computer Accounts and Resources in Active Directory

Administering Computer Accounts and Resources in Active Directory 2 CHAPTER TWO Administering Computer Accounts and Resources in Active Directory Terms you ll need to understand: Domains Domain Trees Domain Forests Computer accounts Run As feature Globally unique identifiers

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

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

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

TechJam Active Directory Auditing Presenter Matt Warburton Professional Services

TechJam Active Directory Auditing Presenter Matt Warburton Professional Services TechJam Active Directory Auditing Presenter Matt Warburton Professional Services Objectives Automate Auditing of Active Directory Review an Array of Examples Minimize Security Related Risk Address Compliance

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

SPHOL207: Database Snapshots with SharePoint 2013

SPHOL207: Database Snapshots with SharePoint 2013 2013 SPHOL207: Database Snapshots with SharePoint 2013 Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site

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

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

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

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

HOW TO: Customise the style of the display name in Active Directory Users and Computers and the GAL

HOW TO: Customise the style of the display name in Active Directory Users and Computers and the GAL HOW TO: Customise the style of the display name in Active Directory Users and Computers and the GAL Finding and Modifying the Display Specifier createdialog It is often asked how the Display Name for user

More information

Backup Assistant. User Guide. NEC NEC Unified Solutions, Inc. March 2008 NDA-30282, Revision 6

Backup Assistant. User Guide. NEC NEC Unified Solutions, Inc. March 2008 NDA-30282, Revision 6 Backup Assistant User Guide NEC NEC Unified Solutions, Inc. March 2008 NDA-30282, Revision 6 Liability Disclaimer NEC Unified Solutions, Inc. reserves the right to change the specifications, functions,

More information

Virtual Dashboard for VMware and Hyper-V

Virtual Dashboard for VMware and Hyper-V Virtual Dashboard for VMware and Hyper-V USER MANUAL Steelgate Technologies, February 2015, all rights reserved. All trademarks are the property of their respective owners. Features and specifications

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

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

IPBrick - Member of AD domain IPBrick iportalmais

IPBrick - Member of AD domain IPBrick iportalmais IPBrick - Member of AD domain IPBrick iportalmais March 2009 2 Copyright c iportalmais All rights reserved. March 2009. The information in this document can be changed without further notice. The declarations,

More information

How To Install Outlook Addin On A 32 Bit Computer

How To Install Outlook Addin On A 32 Bit Computer Deployment Guide - Outlook Add-In www.exclaimer.com Contents About This Guide... 3 System Requirements... 4 Software... 4 Installation Files... 5 Deployment Preparation... 6 Installing the Add-In Manually...

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

Configuring Microsoft Active Directory for Oracle Net Naming. An Oracle White Paper April 2014

Configuring Microsoft Active Directory for Oracle Net Naming. An Oracle White Paper April 2014 Configuring Microsoft Active Directory for Oracle Net Naming An Oracle White Paper April 2014 Configuring Microsoft Active Directory for Oracle Net Naming Introduction... 3 Steps to Configure Active Directory...

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

Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services

Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services Course 6425C: Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services Course Details Course Outline Module 1: Introducing Active Directory Domain Services This module provides

More information

Directory Synchronisation Evaluation Guide

Directory Synchronisation Evaluation Guide Directory Synchronisation Evaluation Guide Getting started with synchronising directories using Sodium Sync Directory Synchronisation Evaluation Guide Page 1 of 20 Objectives The purpose of this guide

More information

Troubleshooting Active Directory Server

Troubleshooting Active Directory Server Proven Practice Troubleshooting Active Directory Server Product(s): IBM Cognos Series 7 Area of Interest: Security Troubleshooting Active Directory Server 2 Copyright Copyright 2008 Cognos ULC (formerly

More information

ExecuTrain Course Outline Configuring & Troubleshooting Windows Server 2008 Active Directory Domain Services MOC 6425C 5 Days

ExecuTrain Course Outline Configuring & Troubleshooting Windows Server 2008 Active Directory Domain Services MOC 6425C 5 Days ExecuTrain Course Outline Configuring & Troubleshooting Windows Server 2008 Active Directory Domain Services MOC 6425C 5 Days Introduction This five-day instructor-led course provides in-depth training

More information

Manage Fine-Grained Password and Account Lockout Policies

Manage Fine-Grained Password and Account Lockout Policies CHAPTER 11 Manage Fine-Grained Password and Account Lockout Policies IN THIS CHAPTER. Create Password Settings Objects. Delete Password Settings Objects. View Settings Defined in Password Settings Objects.

More information

Modular Messaging. Release 3.0 / 3.1. Diminished Permissions for Exchange.

Modular Messaging. Release 3.0 / 3.1. Diminished Permissions for Exchange. Modular Messaging Release 3.0 / 3.1 Diminished Permissions for Exchange. Issue 1 March 2007 2006-2007 Avaya Inc. All Rights Reserved. Notice While reasonable efforts were made to ensure that the information

More information

Windows Server Password Recovery Techniques Courtesy of Daniel Petri http://www.petri.co.il

Windows Server Password Recovery Techniques Courtesy of Daniel Petri http://www.petri.co.il The LOGON.SCR Trick To successfully reset the local administrator's password on Windows NT and some versions of Windows 2000 follow these steps: 1. Install an alternate copy of Windows NT or Windows 2000.

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

Module 3: Implementing an Organizational Unit Structure

Module 3: Implementing an Organizational Unit Structure Module 3: Implementing an Organizational Unit Structure Contents Overview 1 Lesson: Creating and Managing Organizational Units 2 Lesson: Delegating Administrative Control of Organizational Units 13 Lesson

More information

NovaBACKUP Virtual Dashboard

NovaBACKUP Virtual Dashboard NovaBACKUP Virtual Dashboard User Manual NovaStor / April 2015 2015 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to

More information

Active Directory Commands ( www.ostadbook.com )

Active Directory Commands ( www.ostadbook.com ) CSVDE Script Example: Active Directory Commands ( www.ostadbook.com ) 1 Dn, samaccountname, userprincipalname, department, useraccountcontrol, objectclass "CN=Amir Nosrati,OU=IT,DC=Ostadbook,DC=com",Amir-n,Amir-n@Ostadbook.com,MCSE,512,user

More information

Enabling Auditing Manually

Enabling Auditing Manually Enabling Auditing Manually This document explains the steps required to enable auditing at a domain manually Table of Contents Enabling auditing in Lepideauditor Suite... 3 Steps to enable auditing while

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

Configuring and Troubleshooting Windows 2008 Active Directory Domain Services

Configuring and Troubleshooting Windows 2008 Active Directory Domain Services About this Course Configuring and Troubleshooting Windows This five-day instructor-led course provides in-depth training on implementing, configuring, managing and troubleshooting Active Directory Domain

More information

Configuring and Troubleshooting Windows Server 2008 Active Directory Domain MOC 6425

Configuring and Troubleshooting Windows Server 2008 Active Directory Domain MOC 6425 Configuring and Troubleshooting Windows Server 2008 Active Directory Domain MOC 6425 Course Outline Module 1: Introducing Active Directory Domain Services This module provides an overview of Active Directory

More information

How to Configure Microsoft System Operation Manager to Monitor Active Directory, Group Policy and Exchange Changes Using NetWrix Active Directory

How to Configure Microsoft System Operation Manager to Monitor Active Directory, Group Policy and Exchange Changes Using NetWrix Active Directory How to Configure Microsoft System Operation Manager to Monitor Active Directory, Group Policy and Exchange Changes Using NetWrix Active Directory Change Reporter Table of Contents General Information...

More information

Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services

Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services Active Directory About this Course This five-day instructor-led course provides in-depth training on implementing, configuring, managing and troubleshooting (AD DS) in and R2 environments. It covers core

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 www.etidaho.com (208) 327-0768 Course 6425C: Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services 5 Days About this Course This five-day instructor-led course provides in-depth

More information

Installing Active Directory

Installing Active Directory Installing Active Directory 119 Installing Active Directory Installing Active Directory is an easy and straightforward process as long as you planned adequately and made the necessary decisions beforehand.

More information

Troubleshooting File and Printer Sharing in Microsoft Windows XP

Troubleshooting File and Printer Sharing in Microsoft Windows XP Operating System Troubleshooting File and Printer Sharing in Microsoft Windows XP Microsoft Corporation Published: November 2003 Updated: August 2004 Abstract File and printer sharing for Microsoft Windows

More information

Step-by-Step Guide to Bulk Import and Export to Active Directory

Step-by-Step Guide to Bulk Import and Export to Active Directory All Products Support Search microsoft.com Guide Windows 2000 Home Windows 2000 Worldwide Search This Site Go Advanced Search Windows 2000 > Technical Resources > Step-by-Step Guides Step-by-Step Guide

More information

Test Note Phone Manager Deployment Windows Group Policy Sever 2003 and XP SPII Clients

Test Note Phone Manager Deployment Windows Group Policy Sever 2003 and XP SPII Clients Test Note Phone Manager Deployment Windows Group Policy Sever 2003 and XP SPII Clients Note: I have only tested these procedures on Server 2003 SP1 (DC) and XP SPII client, in a controlled lab environment,

More information

PriveonLabs Research. Cisco Security Agent Protection Series:

PriveonLabs Research. Cisco Security Agent Protection Series: Cisco Security Agent Protection Series: Enabling LDAP for CSA Management Center SSO Authentication For CSA 5.2 Versions 5.2.0.245 and up Fred Parks Systems Consultant 3/25/2008 2008 Priveon, Inc. www.priveonlabs.com

More information

Module 4. Managing Groups. Contents: Lesson 1: Overview of Groups 4-3. Lesson 2: Administer Groups 4-24. Lab A: Administer Groups 4-36

Module 4. Managing Groups. Contents: Lesson 1: Overview of Groups 4-3. Lesson 2: Administer Groups 4-24. Lab A: Administer Groups 4-36 Managing Groups 4-1 Module 4 Managing Groups Contents: Lesson 1: Overview of Groups 4-3 Lesson 2: Administer Groups 4-24 Lab A: Administer Groups 4-36 Lesson 3: Best Practices for Group Management 4-41

More information

Application Note. SA Server and ADAM

Application Note. SA Server and ADAM Application Note SA Server and ADAM Solution Overview All information herein is either public information or is the property of and owned solely by Gemalto NV. and/or its subsidiaries who shall have and

More information

NE-6425C Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services

NE-6425C Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services NE-6425C Configuring and Troubleshooting Windows Server 2008 Active Domain Services Summary Duration Vendor Audience 5 Days Microsoft IT Professionals Published Level Technology 02 June 2011 200 Windows

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Application Notes Backup Exec 11D VSS Snapshots and Transportable Offhost Backup Legal Notices Warranty The only warranties for HP products and services are set

More information

Security Explorer 9.5. User Guide

Security Explorer 9.5. User Guide 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software license or nondisclosure agreement.

More information

How To Enable A Websphere To Communicate With Ssl On An Ipad From Aaya One X Portal 1.1.3 On A Pc Or Macbook Or Ipad (For Acedo) On A Network With A Password Protected (

How To Enable A Websphere To Communicate With Ssl On An Ipad From Aaya One X Portal 1.1.3 On A Pc Or Macbook Or Ipad (For Acedo) On A Network With A Password Protected ( Avaya one X Portal 1.1.3 Lightweight Directory Access Protocol (LDAP) over Secure Socket Layer (SSL) Configuration This document provides configuration steps for Avaya one X Portal s 1.1.3 communication

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

Managing Identities and Admin Access

Managing Identities and Admin Access CHAPTER 4 This chapter describes how Cisco Identity Services Engine (ISE) manages its network identities and access to its resources using role-based access control policies, permissions, and settings.

More information

JAVS Scheduled Publishing. Installation/Configuration... 4 Manual Operation... 6 Automating Scheduled Publishing... 7 Windows XP... 7 Windows 7...

JAVS Scheduled Publishing. Installation/Configuration... 4 Manual Operation... 6 Automating Scheduled Publishing... 7 Windows XP... 7 Windows 7... 1 2 Copyright JAVS 1981-2010 Contents Scheduled Publishing... 4 Installation/Configuration... 4 Manual Operation... 6 Automating Scheduled Publishing... 7 Windows XP... 7 Windows 7... 12 Copyright JAVS

More information

Version 7.5 Backup and Recovery Guide

Version 7.5 Backup and Recovery Guide IBM Cognos Business Intelligence Series 7 IBM Cognos Series 7 Deployment Manager Version 7.5 Backup and Recovery Guide Product Information This document applies to IBM Cognos Series 7 Deployment Manager

More information

13.1 Backup virtual machines running on VMware ESXi / ESX Server

13.1 Backup virtual machines running on VMware ESXi / ESX Server 13 Backup / Restore VMware Virtual Machines Tomahawk Pro This chapter describes how to backup and restore virtual machines running on VMware ESX, ESXi Server or VMware Server 2.0. 13.1 Backup virtual machines

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

Role Based Administration for LDMS 9.0 SP2

Role Based Administration for LDMS 9.0 SP2 Role Based Administration for LDMS 9.0 SP2 This article is designed to help you understand Role Based Administration for LDMS 9.0 SP2 and how to configure it. We will try to give you as much information

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

Active Directory Change Notifier Quick Start Guide

Active Directory Change Notifier Quick Start Guide Active Directory Change Notifier Quick Start Guide Software version 3.0 Mar 2014 Copyright 2014 CionSystems Inc., All Rights Reserved Page 1 2014 CionSystems Inc. ALL RIGHTS RESERVED. This guide may not

More information

Technical Reference: Deploying the SofTrack MSI Installer

Technical Reference: Deploying the SofTrack MSI Installer Technical Reference: Page 1 of 20 Table of Contents Overview...3 Prerequisites...3 Component Descriptions...3 Deploying the MSI...3 Script Method...3 Defining Public Properties... 4 Public Property Tables...

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

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

StarWind iscsi SAN Software: Implementation of Enhanced Data Protection Using StarWind Continuous Data Protection

StarWind iscsi SAN Software: Implementation of Enhanced Data Protection Using StarWind Continuous Data Protection StarWind iscsi SAN Software: Implementation of Enhanced Data Protection Using StarWind Continuous Data Protection www.starwindsoftware.com Copyright 2008-2011. All rights reserved. COPYRIGHT Copyright

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

SARANGSoft WinBackup Business v2.5 Client Installation Guide

SARANGSoft WinBackup Business v2.5 Client Installation Guide SARANGSoft WinBackup Business v2.5 Client Installation Guide (November, 2015) WinBackup Business Client is a part of WinBackup Business application. It runs in the background on every client computer that

More information

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

6425C: Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services 6425C: Configuring and Troubleshooting Windows Server 2008 Active Directory Domain Services Course Details Course Code: Duration: Notes: 6425C 5 days This course syllabus should be used to determine whether

More information

Be the Master of Your Domain

Be the Master of Your Domain Be the Master of Your Domain Understanding Windows Server 2008 Active Directory Domain Services written by Tony Murray Directory Services Consultant, Microsoft Most Valuable Professional (MVP) Copyright

More information

Ultimus and Microsoft Active Directory

Ultimus and Microsoft Active Directory Ultimus and Microsoft Active Directory May 2004 Ultimus, Incorporated 15200 Weston Parkway, Suite 106 Cary, North Carolina 27513 Phone: (919) 678-0900 Fax: (919) 678-0901 E-mail: documents@ultimus.com

More information

Copyright 2012 Trend Micro Incorporated. All rights reserved.

Copyright 2012 Trend Micro Incorporated. All rights reserved. Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the software, please review the readme files,

More information

NOTE NOTE 2008 R2. 18. If either or both partitions are not listed, type dnscmd /enlistdirectorypartition

NOTE NOTE 2008 R2. 18. If either or both partitions are not listed, type dnscmd /enlistdirectorypartition 518 CHAPTER 16 Migrating from Windows Server 2003/2008 to Windows Server 18. If either or both partitions are not listed, type dnscmd /enlistdirectorypartition , for example,

More information

ibaan ERP 5.2a Configuration Guide for ibaan ERP Windows Client

ibaan ERP 5.2a Configuration Guide for ibaan ERP Windows Client ibaan ERP 5.2a Configuration Guide for ibaan ERP Windows Client A publication of: Baan Development B.V. P.O.Box 143 3770 AC Barneveld The Netherlands Printed in the Netherlands Baan Development B.V. 2002.

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

Installing GFI MailArchiver

Installing GFI MailArchiver Installing GFI MailArchiver Introduction This chapter highlights important points you should take into consideration before installing GFI MailArchiver on your network, so that you can make the best decisions

More information

NETWRIX FILE SERVER CHANGE REPORTER

NETWRIX FILE SERVER CHANGE REPORTER NETWRIX FILE SERVER CHANGE REPORTER ADMINISTRATOR S GUIDE Product Version: 3.3 April/2012. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

FileMaker Server 10 Help

FileMaker Server 10 Help FileMaker Server 10 Help 2007-2009 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker, the file folder logo, Bento and the Bento logo

More information

Moving the Web Security Log Database

Moving the Web Security Log Database Moving the Web Security Log Database Topic 50530 Web Security Solutions Version 7.7.x, 7.8.x Updated 22-Oct-2013 Version 7.8 introduces support for the Web Security Log Database on Microsoft SQL Server

More information

Technical Bulletin 005 Revised 2010/12/10

Technical Bulletin 005 Revised 2010/12/10 sitesecuresoftware.com Site-Secure Facility & Security Management Software Technical Bulletin 005 Revised 2010/12/10 Search Active Directory from SQL Server 2000-2005 Table of Contents Introduction...

More information

How To Use Gfi Mailarchiver On A Pc Or Macbook With Gfi Email From A Windows 7.5 (Windows 7) On A Microsoft Mail Server On A Gfi Server On An Ipod Or Gfi.Org (

How To Use Gfi Mailarchiver On A Pc Or Macbook With Gfi Email From A Windows 7.5 (Windows 7) On A Microsoft Mail Server On A Gfi Server On An Ipod Or Gfi.Org ( GFI MailArchiver for Exchange 4 Manual By GFI Software http://www.gfi.com Email: info@gfi.com Information in this document is subject to change without notice. Companies, names, and data used in examples

More information