Windows Server 2008 R2: What's New in Active Directory

Size: px
Start display at page:

Download "Windows Server 2008 R2: What's New in Active Directory"

Transcription

1 Windows Server 2008 R2: What's New in Active Directory

2 Table of Contents Windows Server 2008 R2: What's New in Active Directory... 1 Exercise 1 Using the Active Directory Administration Center... 2 Exercise 2 Working with Active Directory using the Active Directory PowerShell Module... 5 Exercise 3 Recovering Deleted Objects using Active Directory Recycle Bin... 8 Exercise 4 Pre-Deploying Computer Accounts using Offline Domain Join... 11

3 Windows Server 2008 R2: What's New in Active Directory Objectives Scenario After completing this lab, you will be better able to: Use the Active Directory Administration Center to perform administrative tasks Locate and manage objects using the Active Directory PowerShell provider Recover deleted Active Directory objects using the Active Directory Recycle Bin Perform an offline domain join for a not yet deployed computer Woodgrove Bank is an investment bank located in Baltimore, USA. Woodgrove Bank has a main office and many regional and local branch offices. Many of the branch offices are small offices and do not have local IT support, and are connected to the main office by low-bandwidth WAN connections. In addition, many users at Woodgrove Bank travel between offices, as well as to customers offices and homes for meetings regarding client accounts. Woodgrove Bank is faced with the following global challenges: Management of many servers in many offices. The need to reduce the operational cost of each branch office. The need for roaming and remote users to access company resources. Management of a large and complex Active Directory infrastructure. Prerequisites Before working on this lab, you must have: The ability to work in a command line environment An understanding of Active Directory administration tasks An understanding of Windows PowerShell concepts and tasks Estimated Time to Complete This Lab Computers used in this Lab 60 Minutes BAL-DC-01 The password for the Administrator account on all computers in this lab is: Passw0rd! Page 1 of 12

4 Exercise 1 Using the Active Directory Administration Center Scenario In this exercise you will use the new Active Directory Administration Center to perform some common Active Directory management tasks. By performing these tasks, you will learn how basic administration and navigation of large Active Directory structures is made easier using the new tools. Complete the following task on: BAL-DC Explore the Administrative Center Interface Note: In this task you will use the new Active Directory Administrative Center to perform some common administrative tasks. The purpose of this exercise is to become familiar with the navigation and use of the new interface. a. On the Start menu, point to Administrative Tools and then click Active Directory Administrative Center. b. In Active Directory Administrative Center, in the Reset Password tile, in User name, type Woodgrovebank\BobSmith and then press TAB. Note: The user name is checked and a warning is displayed that the username is invalid. c. In Active Directory Administrative Center, in the Reset Password tile, in User name, type Woodgrovebank\DonHall and then press TAB. Note: Notice that the user account was validated by the tool. d. In Password and in Confirm Password type Passw0rd!2 and then click Apply. Note: The reset password tile is one of many tiles that can be added to the Overview page. Each tile allows common tasks to be completed quickly and without navigation to the actual object. e. In the upper right of the Administrative Center Overview pane, click Add Content. Note: The Add Content menu allows you to add additional task-based tiles to the Overview page. You can add the tiles that allow you to complete your most common tasks. f. In the Active Directory pane, click the fly-out menu next to Woodgrovebank (local). The fly-out menu is shown below. g. Using the fly-out menu, navigate to America\Washington\King and double-click Redmond. Note: You can use the Find in this column text box to type the first few letters of the item you are looking for to speed navigation. h. Under Redmond, click Abigail Heiford and then in the pane, click Enable. Page 2 of 12

5 2. Creating and Modifying User and Group Accounts Note: In this task you will use the Active Directory Administrative Center to create and modify both user and group accounts. In Active Directory Administrative Center, ensure you are in the America\Washington\King\Redmond organizational unit. a. In the pane, click New and then click User. b. In the Create User dialog box, create a new user account with the properties defined in the following table and then click OK. Note: If a property is not listed in the table, you may omit it in the dialog box. Property First Name Last Name User UPN logon Password Options Password and Confirm Password Value Alice Ciccu AliceCiccu Select Other password options and then check Password never expires. Passw0rd! Note: Note the large number of user properties you can modify in the create user dialog box. c. In the pane, click New and then click Group. d. In the Create Group dialog box, create a new group account with the properties defined in the following table and then click OK. Note: If a property is not listed in the table, you may omit it in the dialog box. Property Name Protect from Accidental Deletion Managed By Members Value RedmondSupport Checked Anna Keyes Click Edit to modify the managed by value. Use the Advanced button to search for her. Alice Ciccu Click Add to modify group membership. e. In the Contents pane, click Alice Ciccu and then in the pane, under Alice Ciccu, click Properties. Note: You may need to refresh your view by pressing F5 if do you not see Alice Ciccu. f. In the Alice Ciccu dialog box, next to Organization, click the Collapse button. g. Next to Profile, click the Close button. Note: The properties dialog box allows you to customize the available administration panes. You can add closed sections by clicking the Add Sections menu and checking the sections you want to add back in. h. Under Extensions, on the Dial-in tab, click Allow access. Page 3 of 12

6 Note: Many properties are accessible through the new property panels; however any additional extensions are available via the extensions panel. This ensures that any third party add-ins for Active Directory Users and Computers still function without modification. i. Click OK to close the Alice Ciccu dialog box. j. Close the Active Directory Administrative Center. Page 4 of 12

7 Exercise 2 Working with Active Directory using the Active Directory PowerShell Module Scenario In this exercise you will use the Windows PowerShell Integrated Scripting Environment (ISE) to administer Active Directory. As a reference, the major components of the ISE are labeled below. Complete the following task on: BAL-DC Using the Windows PowerShell Graphical Console to Work with User and Group Accounts Note: This exercise makes extensive use of Windows PowerShell. To assist you, you can use the up arrow key to recall previous commands and use tab completion to help quickly type commands. In this task you will use the PowerShell V2 Graphical Console to perform basic user and group administrative tasks. You will begin by loading the Active Directory module, exposing over 75 Active Directory Cmdlets. You will then use these Cmdlets to administer Active Directory. a. On the Start menu, navigate to All Programs\Accessories\Windows PowerShell and then click Windows PowerShell ISE. b. To load the Active Directory module and list the available Cmdlets, in the Command Pane, type the following commands, pressing ENTER after each command: Import-Module ActiveDirectory Get-Module Get-Command *ad* c. To browse your Active Directory domain using Windows PowerShell, in the Command Pane, type the following commands, pressing ENTER after each Page 5 of 12

8 2. Using the Windows PowerShell Graphical Console to Work with Domains and Domain Controllers command: Note: You can press the TAB key to auto complete many of these commands and save a great deal of typing. Cd AD: PWD DIR Format-Table -Auto CD "DC=Woodgrovebank,DC=com" DIR ft a Note: This series of commands shows you how you can navigate Active Directory like a file system and format output using standard Windows PowerShell commands. d. To list the content of the users container and then enable the Guest account, in the Command Pane, type the following commands, pressing ENTER after each command: Note: If you see a repeated command, such as the third command in this series, you can use the up arrow to retrieve the previous instance of the command instead of retyping it. CD CN=Users Dir ft a Get-ADObject Filter {name -like * } Get-ADUser Filter {name -like * } Get-ADUser -Filter {name -like "*"} Select Name, Enabled Format-Table -Auto Enable-ADAccount Identity Guest Get-ADUser -Filter {name -like "*"} Select Name, Enabled Format-Table -Auto e. To display information about the user Don Hall in the Managed Objects OU, in the Command Pane, type the following commands, pressing ENTER after each one. CD.. cd OU=Managed Objects' Get-ADuser -Filter {Name -eq "Don Hall"} Get-ADuser -Filter {Name -eq "Don Hall"} Properties * f. To query information on the Domain Administrators group, in the Command Pane, type the following command and then press ENTER: Get-ADGroup -SearchBase "DC=Woodgrovebank,DC=com" -SearchScope Subtree - Filter {Name -Like "*Domain Admins*"} -Properties * g. To add Don Hall to the Domain Administrators group, in the Command Pane, type the following command and then press ENTER: Get-ADGroup -SearchBase "DC=Woodgrovebank,DC=com" -SearchScope Subtree - Filter {Name -Like "*Domain Admins*"} Add-ADGroupMember -Member DonHall Note: In this task you will use Cmdlets that relate to the domain and to domain controllers to display information about items such as password policies and FSMO roles. a. To query information on the Woodgrovebank.com domain, in the Command Pane, type the following command and then press ENTER: Get-ADDomain Woodgrovebank.com Note: The output of this command allows you to easily determine things such as FSMO roles. b. To query information on the domain controllers in the Woodgrovebank.com domain, in the Command Pane, type the following command and then press ENTER: Get-ADDomainController Discover Page 6 of 12

9 c. To query information on the domain password policy in the Woodgrovebank.com domain, in the Command Pane, type the following command and then press ENTER: Get-ADDefaultDomainPasswordPolicy Woodgrovebank.com 3. Using Windows PowerShell Graphical Console to Create and Delete Organizational Units Note: In this task you will use Cmdlets that relate to organizational units to create and delete an organizational unit. You will also use a Set Cmdlet to set properties on an organizational unit. a. To create a new organizational unit and display its properties, in the Command Pane, type the following commands, pressing ENTER after each one: New-ADOrganizationalUnit Name Europe Path DC=Woodgrovebank,DC=com Get-ADOrganizationalUnit OU=Europe,DC=Woodgrovebank,DC=com Properties * b. To delete the new organizational unit, in the Command Pane, type the following commands, pressing ENTER after each one and clicking Yes to confirm deletion. Note: Note that the first command will result in an expected failure due to insufficient permissions, which the second command will resolve. Remove-ADOrganizationalUnit OU=Europe,DC=Woodgrovebank,DC=com Set-ADOrganizationalUnit OU=Europe,DC=Woodgrovebank,DC=com ProtectedFromAccidentalDeletion $False Remove-ADOrganizationalUnit OU=Europe,DC=Woodgrovebank,DC=com Note: The ProtectedFromAccidentalDeletion property is used to add or remove an access control list to the OU which explicitly denies the delete permission for all users. This property is true by default for all container objects. c. Close Windows PowerShell ISE. Page 7 of 12

10 Exercise 3 Recovering Deleted Objects using Active Directory Recycle Bin Scenario In this exercise you will explore the new Active Directory Recycle Bin feature. The Active Directory Recycle Bin stores all deleted objects in a special container which allows easy recovery at a later time, preserving all object properties. Complete the following task on: BAL-DC Enable the Active Directory Recycle Bin Feature 2. Move Objects to the Recycle Bin Note: In this task you will enable the Active Directory Recycle Bin feature. Windows Server 2008 R2 does not automatically enable features as forest and domain functional levels are increased. Each feature must now be explicitly enabled. Features are enabled using the Enable-ADOptionalFeature PowerShell Cmdlet. a. On the Start menu, point to Administrative Tools and then click Active Directory Module for Windows PowerShell. b. To check the state of the Recycle Bin Feature, in Windows PowerShell, type the following command and then press ENTER: Get-ADOptionalFeature Filter {Name Like * } Note: The EnabledScopes property is currently empty, which indicates that this feature is not enabled. The RequiredForestMode property indicates the prerequisites for enabling this feature. c. To enable the Recycle Bin feature, in Windows PowerShell, type the following command and then press ENTER: Enable-ADOptionalFeature -Identity 'CN=Recycle Bin Feature,CN=Optional Features,CN=Directory Service,CN=Windows NT,CN=Services,CN=Configuration,DC=woodgrovebank,DC=com' -Scope ForestOrConfigurationSet -Target 'woodgrovebank.com' Note: This command will enable the Recycle Bin feature, which is disabled by default. d. To confirm the command, type Y and press ENTER. Note: You must confirm this action, as once enabled, you cannot disable the Recycle Bin. e. To verify the Recycle Bin feature has been enabled, in Windows PowerShell, type the following command and then press ENTER: Get-ADOptionalFeature Filter {Name Like * } Note: You can review the value of EnabledScopes to ensure that the Recycle Bin is enabled. Note: In this task you will move objects to the Recycle Bin by deleting them. All deleted objects are automatically moved to the Recycle Bin once the feature is enabled. a. On the Start Menu, point to Administrative Tools and then click Active Directory Administrative Center. b. Navigate to the America\Washington\King\Redmond organizational unit. Page 8 of 12

11 3. Verify Objects are Now in the Recycle Bin 4. Recover Deleted Objects c. Delete the user account Alice Ciccu. d. Delete the group account RedmondSupport. Note: You can use the search feature at the top of the window to find the group. You will also need to uncheck Protect from accidental deletion from within the group properties. e. Delete the Redmond organizational unit. f. In the Confirm Subtree Deletion dialog box, check Use delete subtree server control and then click Yes. Note: In this task you will use Windows PowerShell to query the contents of the Active Directory Recycle Bin. Objects that have been deleted are moved to this location and have their distinguished name adjusted to reflect the fact that they are a deleted object, and also to avoid conflicts when multiple objects of the same common name are deleted. a. On the Start menu, point to Administrative Tools and then click Active Directory Module for Windows PowerShell. b. To display the contents of the Recycle Bin, in Windows PowerShell, type the following command and then press ENTER: Get-ADObject SearchBase CN=Deleted Objects,DC=Woodgrovebank,DC=Com ldapfilter (objectclass=*) -includedeletedobjects Note: This command displays the entire contents of the Recycle Bin. Leave the output of this command on the screen as you will use it in the next task. c. To verify the Alice Ciccu user object is in the Recycle Bin, in Windows PowerShell, type the following command and then press ENTER: Get-ADObject Filter {Name Like *Alice Ciccu* } SearchScope Subtree includedeletedobjects Format-List Note: The output of this command will show the details for the Alice Ciccu user object. Note the distinguished name indicates this object is in the AD Recycle Bin. d. In Windows PowerShell, type the following command and then press ENTER: Get-ADObject Filter {Name Like *Redmond* } SearchScope Subtree IncludeDeletedObjects Format-List Note: The output of this command will show the details for the RedmondSupport user group as well as the Redmond OU. Note the distinguished name indicates this object is in the AD Recycle Bin. Note: In this task you will use the Recover-ADObject PowerShell Cmdlet to recover objects that have been deleted from Active Directory. Ensure Active Directory Module for Windows PowerShell is open. a. In Windows PowerShell, copy the objectguid value for the object Alice Ciccu to the clipboard. Note: To copy text from a command prompt, right click and then select Mark. Highlight the text to copy and then press ENTER. To paste, right click and then click Paste. b. To attempt to restore the Alice Ciccu user account, in Windows PowerShell, type the following command and then press ENTER: Note: To complete the following command, copy the value of the objectguid property from the Alice Ciccu object. Restore-ADObject Identity <objectguid> Page 9 of 12

12 Note: The command fails with an error message indicating that the object s parent object does not exist. You can then query for the last known parent of the object and restore that object. c. To identify the last known parent of Alice Ciccu, in Windows PowerShell, type the following command and then press ENTER: Note: To save typing, use the up arrow key to locate the previous search command and append the additional parameters to it. Get-ADObject Filter Name Like *Alice Ciccu* SearchScope Subtree includedeletedobjects properties lastknownparent Format-List Note: This command displays the last known parent object, which, you can tell, is also in the Recycle Bin. d. To restore the OU which contains Alice Ciccu, in Windows PowerShell, type the following command and then press ENTER: Note: To complete the following command, copy the value of the objectguid property from the Redmond object which can be found from the output of the last command in Step 3 in the Verify Objects are Now in the Recycle Bin exercise. Restore-ADObject Identity <objectguid> e. To restore the Redmond OU Objects, including Alice Ciccu, in Windows PowerShell, type the following command and then press ENTER: Get-ADObject ldapfilter (lastknownparent=ou=redmond,ou=king,ou=washington,ou=america,dc=woodgr ovebank,dc=com) includedeletedobjects Restore-ADObject Note: This command lists all objects that have the last known parent attribute as the Redmond OU and pipes them into the Restore-ADObject Cmdlet. 5. Verify that Deleted Objects have been Recovered Note: In this task you will review Active Directory to ensure that the deleted objects have been recovered. a. If not open, on the Start Menu, point to Administrative Tools and then click Active Directory Administrative Center. Note: Ensure you refresh your view in Active Directory Administrative Center after you make changes to ensure you see those changes. b. Navigate to the America\Washington\King OU. c. Verify that the Redmond OU is present. d. Navigate to the Redmond OU. e. Verify that the user accounts, including Alice Ciccu, are present. f. Verify the group RedmondSupport is present. Page 10 of 12

13 Exercise 4 Pre-Deploying Computer Accounts using Offline Domain Join Scenario In this exercise you will complete the tasks required to provision an account for offline domain join. Offline domain join involves two steps. In the first step you will provision a computer account in Active Directory and save the account information in a file. In the second step you will use that file in a command that inserts the domain join information into an offline version of Windows. Complete the following task on: BAL-DC Provision a Computer Account for Offline Domain Join Note: In this task you will use the DJoin command to provision a computer account in Active Directory for offline domain join. The result of this task is a file that can be merged into an offline copy of Windows, ensuring that the first time the computer starts it is domain joined. a. On the Start menu, click Command Prompt. b. To provision a new computer account, in the Command Prompt, type the following command and then press ENTER: DJOIN /Provision /Domain Woodgrovebank.com /Machine BAL-SRV-10 /SaveFile BAL- SRV-10.DJoin Note: This command creates a computer account in Active Directory and stores the computer account password and related information in an encrypted file. The encrypted file can then be used to offline domain join a computer. c. To display the contents of the provisioning file, in the Command Prompt, type the following command and then press ENTER: Type BAL-SRV-10.DJoin Note: The contents of the.djoin file are encrypted. 2. Verify the Computer Account has been Created in Active Directory Note: In this task you will look at Active Directory to verify that the offline domain join has correctly created the computer account for BAL-SVR-10. a. On the Start menu, point to Administrative Tools and then click Active Directory Administrative Center. b. Navigate to Woodgrovebank (local)\computers. Note: Note that the computer account BAL-SRV-10 has been created. 3. Review the Process to Perform an Offline Domain Join Note: In this task you will type the command used to perform an offline domain join operation. This command will use the contents of the saved file created in the previous task to insert domain join information into the computer s registry without having to start the operating system. This command can be run on an offline copy of Windows such as a WIM file or VHD which has been mounted. Begin this task with a command prompt window open. a. To perform an offline domain join, use the following command: Page 11 of 12

14 Note: Do not execute this command. It is provided for reference purposes only. DJOIN /Requestodj /LoadFile BAL-SVR-10.DJoin /WindowsPath \Mount\Windows Note: This command is used to perform the offline domain join. This command is intended to be run against an offline copy of Windows such as a WIM file or VHD that has been mounted as a drive or folder in the file system. Page 12 of 12

WELCOME TO TECH IMMERSION

WELCOME TO TECH IMMERSION WELCOME TO TECH IMMERSION Track: Active Directory Cmdlets Presenter: Brian McCann Global Platforms Engineer - Brian@Intel.com PowerShell Advantages o Consistent vocabulary and syntax Verbs Add, New, Get,

More information

Active Directory Deployment and Management Enhancements

Active Directory Deployment and Management Enhancements Active Directory Deployment and Management Enhancements Windows Server 2012 Hands-on lab In this lab, you will learn how to deploy Active Directory domain controllers with Windows Server 2012. You will

More information

Windows Server 2008 R2: Active Directory and Server Manager Remoting

Windows Server 2008 R2: Active Directory and Server Manager Remoting Windows Server 2008 R2: Active Directory and Server Manager Remoting Table of Contents Windows Server 2008 R2: Active Directory and Server Manager Remoting... 1 Exercise 1 Simplifying Management using

More information

LAB 1: Installing Active Directory Federation Services

LAB 1: Installing Active Directory Federation Services LAB 1: Installing Active Directory Federation Services Contents Lab: Installing and Configuring Active Directory Federation Services... 2 Exercise 1: installing and configuring Active Directory Federation

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

Windows Server 2008 R2: Server Management and PowerShell V2

Windows Server 2008 R2: Server Management and PowerShell V2 Windows Server 2008 R2: Server Management and PowerShell V2 Table of Contents Windows Server 2008 R2: Server Management and PowerShell V2... 1 Exercise 1 Remote Management Using Server Manager... 2 Exercise

More information

When the Active Directory Recycling Bin Isn t Enough

When the Active Directory Recycling Bin Isn t Enough When the Active Directory Recycling Bin Isn t Enough Don Jones 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 2011 ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the

More information

How to Create a Delegated Administrator User Role / To create a Delegated Administrator user role Page 1

How to Create a Delegated Administrator User Role / To create a Delegated Administrator user role Page 1 Managing user roles in SCVMM How to Create a Delegated Administrator User Role... 2 To create a Delegated Administrator user role... 2 Managing User Roles... 3 Backing Up and Restoring the VMM Database...

More information

Active Directory in Windows Server 2008 R2: What s New?

Active Directory in Windows Server 2008 R2: What s New? Active Directory in Windows Server 2008 R2: What s New? Siddharth Bhai Program Manager Microsoft Corporation Presented at Seattle Windows Networking User Group May 6, 2009 Tour the Active Directory features

More information

Track User Password Expiration using Active Directory

Track User Password Expiration using Active Directory Track User Password Expiration using Active Directory Jeff Hicks 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 2011 ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic,

More information

Introduction to DirectAccess in Windows Server 2012

Introduction to DirectAccess in Windows Server 2012 Introduction to DirectAccess in Windows Server 2012 Windows Server 2012 Hands-on lab In this lab, you will configure a Windows 8 workgroup client to access the corporate network using DirectAccess technology,

More information

Create, Link, or Edit a GPO with Active Directory Users and Computers

Create, Link, or Edit a GPO with Active Directory Users and Computers How to Edit Local Computer Policy Settings To edit the local computer policy settings, you must be a local computer administrator or a member of the Domain Admins or Enterprise Admins groups. 1. Add the

More information

Administration Guide. . All right reserved. For more information about Specops Gpupdate and other Specops products, visit www.specopssoft.

Administration Guide. . All right reserved. For more information about Specops Gpupdate and other Specops products, visit www.specopssoft. . All right reserved. For more information about Specops Gpupdate and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Gpupdate is a trademark owned by Specops Software.

More information

SafeGuard Enterprise Administrator help

SafeGuard Enterprise Administrator help SafeGuard Enterprise Administrator help Product version: 5.60 Document date: April 2011 Contents 1 The SafeGuard Management Center...4 2 Log on to the SafeGuard Management Center...5 3 Operating steps

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

Installing and Configuring Login PI

Installing and Configuring Login PI Installing and Configuring Login PI Login PI Hands-on lab In this lab, you will configure Login PI to provide performance insights for a Windows Server 2012 R2 Remote Desktop Services installation. To

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

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

Lab A: Deploying and Managing Software by Using Group Policy Answer Key

Lab A: Deploying and Managing Software by Using Group Policy Answer Key Lab A: Deploying and Managing Software by Using Group Policy Answer Key Exercise 1 Assigning Software This Answer Key provides the detailed steps for completing Lab A: Deploying and Managing Software by

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

Active Directory Installation on Windows Server 2012

Active Directory Installation on Windows Server 2012 Active Directory Installation on Windows Server 2012 What really active directory is..? Active Directory Domain Services (AD DS) is an extensible and scalable directory service you can use to efficiently

More information

Specops Command. Installation Guide

Specops Command. Installation Guide Specops Software. All right reserved. For more information about Specops Command and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Command is a trademark owned by Specops

More information

2. Using Notepad, create a file called c:\demote.txt containing the following information:

2. Using Notepad, create a file called c:\demote.txt containing the following information: Unit 4 Additional Projects Configuring the Local Computer Policy You need to prepare your test lab for your upcoming experiments. First, remove a child domain that you have configured. Then, configure

More information

Active Directory Friday: All Articles. Jaap Brasser

Active Directory Friday: All Articles. Jaap Brasser Active Directory Friday: All Articles Jaap Brasser Content Creating Active Directory groups using PowerShell... 3 Determine the forest functional level... 5 Find empty Organizational Unit... 6 Use the

More information

RoomWizard Synchronization Software Manual Installation Instructions

RoomWizard Synchronization Software Manual Installation Instructions 2 RoomWizard Synchronization Software Manual Installation Instructions Table of Contents Exchange Server Configuration... 4 RoomWizard Synchronization Software Installation and Configuration... 5 System

More information

ECAT SWE Exchange Customer Administration Tool Web Interface User Guide Version 6.7

ECAT SWE Exchange Customer Administration Tool Web Interface User Guide Version 6.7 ECAT SWE Exchange Customer Administration Tool SWE - Exchange Customer Administration Tool (ECAT) Table of Contents About this Guide... 3 Audience and Purpose... 3 What is in this Guide?... 3 CA.mail Website...

More information

LT Auditor+ 2013. Windows Assessment SP1 Installation & Configuration Guide

LT Auditor+ 2013. Windows Assessment SP1 Installation & Configuration Guide LT Auditor+ 2013 Windows Assessment SP1 Installation & Configuration Guide Table of Contents CHAPTER 1- OVERVIEW... 3 CHAPTER 2 - INSTALL LT AUDITOR+ WINDOWS ASSESSMENT SP1 COMPONENTS... 4 System Requirements...

More information

During your session you will have access to the following lab configuration.

During your session you will have access to the following lab configuration. Introduction The Install and Configure Servers module provides you with the instruction and server hardware to develop your hands on skills in the defined topics. This module includes the following exercises:

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

16.4.3 Lab: Data Backup and Recovery in Windows XP

16.4.3 Lab: Data Backup and Recovery in Windows XP 16.4.3 Lab: Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment The

More information

Network DK2 DESkey Installation Guide

Network DK2 DESkey Installation Guide VenturiOne Getting Started Network DK2 DESkey Installation Guide PD-056-306 DESkey Network Server Manual Applied Cytometry CONTENTS 1 DK2 Network Server Overview... 2 2 DK2 Network Server Installation...

More information

SPHOL300 Synchronizing Profile Pictures from On-Premises AD to SharePoint Online

SPHOL300 Synchronizing Profile Pictures from On-Premises AD to SharePoint Online SPHOL300 Synchronizing Profile Pictures from On-Premises AD to SharePoint Online Contents Overview... 3 Introduction... 3 The Contoso Ltd. Scenario... 4 Exercise 1: Member Server Sign up for Office 365

More information

Deploying System Center 2012 R2 Configuration Manager

Deploying System Center 2012 R2 Configuration Manager Deploying System Center 2012 R2 Configuration Manager This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED, OR STATUTORY, AS TO THE INFORMATION IN THIS DOCUMENT.

More information

Deploying Remote Desktop Connection Broker with High Availability Step-by-Step Guide

Deploying Remote Desktop Connection Broker with High Availability Step-by-Step Guide Deploying Remote Desktop Connection Broker with High Availability Step-by-Step Guide Microsoft Corporation Published: May 2010 Abstract This guide describes the steps for configuring Remote Desktop Connection

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

Administering Group Policy with Group Policy Management Console

Administering Group Policy with Group Policy Management Console Administering Group Policy with Group Policy Management Console By Jim Lundy Microsoft Corporation Published: April 2003 Abstract In conjunction with Windows Server 2003, Microsoft has released a new Group

More information

Installation Guide. . All right reserved. For more information about Specops Deploy and other Specops products, visit www.specopssoft.

Installation Guide. . All right reserved. For more information about Specops Deploy and other Specops products, visit www.specopssoft. . All right reserved. For more information about Specops Deploy and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Deploy is a trademark owned by Specops Software. All

More information

ILTA HANDS ON Securing Windows 7

ILTA HANDS ON Securing Windows 7 Securing Windows 7 8/23/2011 Table of Contents About this lab... 3 About the Laboratory Environment... 4 Lab 1: Restricting Users... 5 Exercise 1. Verify the default rights of users... 5 Exercise 2. Adding

More information

MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM)

MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM) MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM) MICROSOFT BITLOCKER ADMINISTRATION AND MONITORING (MBAM) Microsoft BitLocker Administration and Monitoring (MBAM) provides a simplified administrative

More information

10.3.1.6 Lab - Data Backup and Recovery in Windows XP

10.3.1.6 Lab - Data Backup and Recovery in Windows XP 5.0 10.3.1.6 Lab - Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment

More information

WhatsUp Gold v16.1 Installation and Configuration Guide

WhatsUp Gold v16.1 Installation and Configuration Guide WhatsUp Gold v16.1 Installation and Configuration Guide Contents Installing and Configuring Ipswitch WhatsUp Gold v16.1 using WhatsUp Setup Installing WhatsUp Gold using WhatsUp Setup... 1 Security guidelines

More information

Installation Guide. . All right reserved. For more information about Specops Inventory and other Specops products, visit www.specopssoft.

Installation Guide. . All right reserved. For more information about Specops Inventory and other Specops products, visit www.specopssoft. . All right reserved. For more information about Specops Inventory and other Specops products, visit www.specopssoft.com Copyright and Trademarks Specops Inventory is a trademark owned by Specops Software.

More information

Migrating Active Directory to Windows Server 2012 R2

Migrating Active Directory to Windows Server 2012 R2 Migrating Active Directory to Windows Server 2012 R2 Windows Server 2012 R2 Hands-on lab In this lab, you will complete a migration of a Windows Server 2008 R2 domain environment to Windows Server 2012

More information

User Document. Adobe Acrobat 7.0 for Microsoft Windows Group Policy Objects and Active Directory

User Document. Adobe Acrobat 7.0 for Microsoft Windows Group Policy Objects and Active Directory Adobe Acrobat 7.0 for Microsoft Windows Group Policy Objects and Active Directory Copyright 2005 Adobe Systems Incorporated. All rights reserved. NOTICE: All information contained herein is the property

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

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

EventTracker: Support to Non English Systems

EventTracker: Support to Non English Systems EventTracker: Support to Non English Systems Publication Date: April 25, 2012 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Introduction This document has been prepared to

More information

Synchronizer Installation

Synchronizer Installation Synchronizer Installation Synchronizer Installation Synchronizer Installation This document provides instructions for installing Synchronizer. Synchronizer performs all the administrative tasks for XenClient

More information

ContentWatch Auto Deployment Tool

ContentWatch Auto Deployment Tool ContentWatch Auto Deployment Tool ContentWatch gives administrators the ability to easily distribute ContentProtect (or say our products) over any network. With our Unattended Installer you can install

More information

Step-By-Step Guide to Deploying Lync Server 2010 Enterprise Edition

Step-By-Step Guide to Deploying Lync Server 2010 Enterprise Edition Step-By-Step Guide to Deploying Lync Server 2010 Enterprise Edition The installation of Lync Server 2010 is a fairly task-intensive process. In this article, I will walk you through each of the tasks,

More information

Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials

Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials Installing Windows Server Update Services (WSUS) on Windows Server 2012 R2 Essentials With Windows Server 2012 R2 Essentials in your business, it is important to centrally manage your workstations to ensure

More information

NSi Mobile Installation Guide. Version 6.2

NSi Mobile Installation Guide. Version 6.2 NSi Mobile Installation Guide Version 6.2 Revision History Version Date 1.0 October 2, 2012 2.0 September 18, 2013 2 CONTENTS TABLE OF CONTENTS PREFACE... 5 Purpose of this Document... 5 Version Compatibility...

More information

Step-by-Step Guide for Microsoft Advanced Group Policy Management 4.0

Step-by-Step Guide for Microsoft Advanced Group Policy Management 4.0 Step-by-Step Guide for Microsoft Advanced Group Policy Management 4.0 Microsoft Corporation Published: September 2009 Abstract This step-by-step guide describes a sample scenario for installing Microsoft

More information

WhatsUp Gold v16.3 Installation and Configuration Guide

WhatsUp Gold v16.3 Installation and Configuration Guide WhatsUp Gold v16.3 Installation and Configuration Guide Contents Installing and Configuring WhatsUp Gold using WhatsUp Setup Installation Overview... 1 Overview... 1 Security considerations... 2 Standard

More information

Microsoft Corporation. Project Server 2010 Installation Guide

Microsoft Corporation. Project Server 2010 Installation Guide Microsoft Corporation Project Server 2010 Installation Guide Office Asia Team 11/4/2010 Table of Contents 1. Prepare the Server... 2 1.1 Install KB979917 on Windows Server... 2 1.2 Creating users and groups

More information

Copyright Texthelp Limited All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval

Copyright Texthelp Limited All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval Copyright Texthelp Limited All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into any language, in any form, by any

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

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER Notes: STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER 1. These instructions focus on installation on Windows Terminal Server (WTS), but are applicable

More information

ACTIVE DIRECTORY DEPLOYMENT

ACTIVE DIRECTORY DEPLOYMENT ACTIVE DIRECTORY DEPLOYMENT CASAS Technical Support 800.255.1036 2009 Comprehensive Adult Student Assessment Systems. All rights reserved. Version 031809 CONTENTS 1. INTRODUCTION... 1 1.1 LAN PREREQUISITES...

More information

VMware Mirage Web Manager Guide

VMware Mirage Web Manager Guide Mirage 5.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions of this document,

More information

LAB: Enterprise Single Sign-On Services. Last Saved: 7/17/2006 10:48:00 PM

LAB: Enterprise Single Sign-On Services. Last Saved: 7/17/2006 10:48:00 PM LAB: Enterprise Single Sign-On Services LAB: Enterprise Single Sign-On Services 2 TABLE OF CONTENTS HOL: Enterprise Single Sign-On Services...3 Objectives...3 Lab Setup...4 Preparation...5 Exercise 1:

More information

Buffalo Technology: Migrating your data to Windows Storage Server 2012 R2

Buffalo Technology: Migrating your data to Windows Storage Server 2012 R2 Buffalo Technology: Migrating your data to Windows Storage Server 2012 R2 1 Buffalo Technology: Migrating your data to Windows Storage Server 2012 R2 Contents Chapter 1 Data migration method:... 3 Chapter

More information

WhatsUp Gold v16.2 Installation and Configuration Guide

WhatsUp Gold v16.2 Installation and Configuration Guide WhatsUp Gold v16.2 Installation and Configuration Guide Contents Installing and Configuring Ipswitch WhatsUp Gold v16.2 using WhatsUp Setup Installing WhatsUp Gold using WhatsUp Setup... 1 Security guidelines

More information

ADMINISTRATOR'S GUIDE. Version 12.20

ADMINISTRATOR'S GUIDE. Version 12.20 ADMINISTRATOR'S GUIDE Version 12.20 Copyright 1981-2015 Netop Business Solutions A/S. All Rights Reserved. Portions used under license from third parties. Please send any comments to: Netop Business Solutions

More information

Active Directory integration with CloudByte ElastiStor

Active Directory integration with CloudByte ElastiStor Active Directory integration with CloudByte ElastiStor Prerequisite Change the time and the time zone of the Active Directory Server to the VSM time and time zone. Enabling Active Directory at VSM level

More information

Windows 10 and Enterprise Mobility

Windows 10 and Enterprise Mobility Windows 10 and Enterprise Mobility Deploying Windows 10 using Microsoft Deployment Toolkit The exercises in this lab guide show how to deploy Windows 10 by using Microsoft Deployment Toolkit (MDT) 2013

More information

ScriptLogic File System Auditor User Guide

ScriptLogic File System Auditor User Guide ScriptLogic File System Auditor User Guide FILE SYSTEM AUDITOR I 2005 by ScriptLogic Corporation All rights reserved. This publication is protected by copyright and all rights are reserved by ScriptLogic

More information

Restructuring Active Directory Domains Within a Forest

Restructuring Active Directory Domains Within a Forest C H A P T E R 1 2 Restructuring Active Directory Domains Within a Forest Restructuring Active Directory directory service domains within a forest with the goal of reducing the number of domains allows

More information

Objectives. At the end of this chapter students should be able to:

Objectives. At the end of this chapter students should be able to: NTFS PERMISSIONS AND SECURITY SETTING.1 Introduction to NTFS Permissions.1.1 File Permissions and Folder Permission.2 Assigning NTFS Permissions and Special Permission.2.1 Planning NTFS Permissions.2.2

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

SWCS 4.2 Client Configuration Users Guide Revision 49. 11/26/2012 Solatech, Inc.

SWCS 4.2 Client Configuration Users Guide Revision 49. 11/26/2012 Solatech, Inc. SWCS 4.2 Client Configuration Users Guide Revision 49 11/26/2012 Solatech, Inc. Contents Introduction... 4 Installation... 4 Running the Utility... 4 Company Database Tasks... 4 Verifying a Company...

More information

One step login. Solutions:

One step login. Solutions: Many Lotus customers use Lotus messaging and/or applications on Windows and manage Microsoft server/client environment via Microsoft Active Directory. There are two important business requirements in this

More information

Direct Storage Access Using NetApp SnapDrive. Installation & Administration Guide

Direct Storage Access Using NetApp SnapDrive. Installation & Administration Guide Direct Storage Access Using NetApp SnapDrive Installation & Administration Guide SnapDrive overview... 3 What SnapDrive does... 3 What SnapDrive does not do... 3 Recommendations for using SnapDrive...

More information

NetWrix Password Manager. Quick Start Guide

NetWrix Password Manager. Quick Start Guide NetWrix Password Manager Quick Start Guide Contents Overview... 3 Setup... 3 Deploying the Core Components... 3 System Requirements... 3 Installation... 4 Windows Server 2008 Notes... 4 Upgrade Path...

More information

ICT Professional Optional Programmes

ICT Professional Optional Programmes ICT Professional Optional Programmes Skills Team are a Microsoft Academy with new training rooms and IT labs in our purpose built training centre in Ealing, West London. We offer a range of year-long qualifications

More information

Good Morning Wireless! SSID: MSFTOPEN No Username or Password Required

Good Morning Wireless! SSID: MSFTOPEN No Username or Password Required Good Morning Wireless! SSID: MSFTOPEN No Username or Password Required 2 Today s Agenda - 9:00-10:30 - Windows Azure Infrastructure Services - 10:30-10:45 - Break - 10:45-12:00 - Windows Azure Infrastructure

More information

HDA Integration Guide. Help Desk Authority 9.0

HDA Integration Guide. Help Desk Authority 9.0 HDA Integration Guide Help Desk Authority 9.0 2011ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the ScriptLogic logo and Point,Click,Done! are trademarks and registered trademarks of ScriptLogic

More information

How To Configure A Windows 8.1 On A Windows 7.1.1 (Windows) With A Powerpoint (Windows 8) On A Blackberry) On An Ipad Or Ipad (Windows 7) On Your Blackberry Or Black

How To Configure A Windows 8.1 On A Windows 7.1.1 (Windows) With A Powerpoint (Windows 8) On A Blackberry) On An Ipad Or Ipad (Windows 7) On Your Blackberry Or Black Introduction to Cloud-Based Mobile Device Management with Intune Information in this document, including URLs and other Internet Web site references, is subject to change without notice. Unless otherwise

More information

LAB 2: Identity Management

LAB 2: Identity Management LAB 2: Identity Management Contents Lab 2: Identity Management... 2 Exercise 1: install and configure prerequisites for configuring AD FS... 3 Tasks... 3 Exercise 2: adding and verifying a standard domain

More information

To install ZCO. Once you have the above information and the ZCO.msi installation file, use the following instructions to install ZCO.

To install ZCO. Once you have the above information and the ZCO.msi installation file, use the following instructions to install ZCO. How to Install and Use Zimbra Connector for Outlook The Zimbra Connector for Outlook (ZCO) provides real time two-way synchronization of email messages, folders including the Chats folder, tags, contacts,

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

SafeGuard Enterprise Web Helpdesk. Product version: 6.1

SafeGuard Enterprise Web Helpdesk. Product version: 6.1 SafeGuard Enterprise Web Helpdesk Product version: 6.1 Document date: February 2014 Contents 1 SafeGuard web-based Challenge/Response...3 2 Scope of Web Helpdesk...4 3 Installation...5 4 Allow Web Helpdesk

More information

VMware/Hyper-V Backup Plug-in User Guide

VMware/Hyper-V Backup Plug-in User Guide VMware/Hyper-V Backup Plug-in User Guide COPYRIGHT No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical, photocopying,

More information

System Center Configuration Manager 2007

System Center Configuration Manager 2007 System Center Configuration Manager 2007 Software Distribution Guide Friday, 26 February 2010 Version 1.0.0.0 Baseline Prepared by Microsoft Copyright This document and/or software ( this Content ) has

More information

Advanced Event Viewer Manual

Advanced Event Viewer Manual Advanced Event Viewer Manual Document version: 2.2944.01 Download Advanced Event Viewer at: http://www.advancedeventviewer.com Page 1 Introduction Advanced Event Viewer is an award winning application

More information

You must have at least Editor access to your own mail database to run archiving.

You must have at least Editor access to your own mail database to run archiving. Archiving An archive is a copy of a database you can create to store information no longer in use. Like a replica, an archive contains all documents and design elements in the original database, but unlike

More information

How To Backup In Cisco Uk Central And Cisco Cusd (Cisco) Cusm (Custodian) (Cusd) (Uk) (Usd).Com) (Ucs) (Cyse

How To Backup In Cisco Uk Central And Cisco Cusd (Cisco) Cusm (Custodian) (Cusd) (Uk) (Usd).Com) (Ucs) (Cyse This chapter includes the following sections: Backup and Import in Cisco UCS Central, page 1 Backing up and Restoring Cisco UCS Central, page 4 Backing up and Restoring Cisco UCS Domains, page 8 Import

More information

Windows PowerShell. 3.0 Step by Step. Ed Wilson

Windows PowerShell. 3.0 Step by Step. Ed Wilson Windows PowerShell 3.0 Step by Step Ed Wilson Foreword Introduction xix xxi Chapter 1 Overview of Windows PowerShell 3.0 1 Understanding Windows PowerShell 1 Using cmdlets 3 Installing Windows PowerShell

More information

Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide

Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Windows 2000, Windows Server 2003 5.0 11293743 Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Copyright

More information

Configuring a Custom Load Evaluator Use the XenApp1 virtual machine, logged on as the XenApp\administrator user for this task.

Configuring a Custom Load Evaluator Use the XenApp1 virtual machine, logged on as the XenApp\administrator user for this task. Lab 8 User name: Administrator Password: Password1 Contents Exercise 8-1: Assigning a Custom Load Evaluator... 1 Scenario... 1 Configuring a Custom Load Evaluator... 1 Assigning a Load Evaluator to a Server...

More information

Windows 2008 Server DIRECTIVAS DE GRUPO. Administración SSII

Windows 2008 Server DIRECTIVAS DE GRUPO. Administración SSII Windows 2008 Server DIRECTIVAS DE GRUPO Administración SSII Group Policy A centralized approach to applying one or more changes to one or more users or computers Setting: Definition of a change or configuration

More information

LepideAuditor Suite for File Server. Installation and Configuration Guide

LepideAuditor Suite for File Server. Installation and Configuration Guide LepideAuditor Suite for File Server Installation and Configuration Guide Table of Contents 1. Introduction... 4 2. Requirements and Prerequisites... 4 2.1 Basic System Requirements... 4 2.2 Supported Servers

More information

Managing Linux Servers with System Center 2012 R2

Managing Linux Servers with System Center 2012 R2 Managing Linux Servers with System Center 2012 R2 System Center 2012 R2 Hands-on lab In this lab, you will use System Center 2012 R2 Operations Manager and System Center 2012 R2 Configuration Manager to

More information

Security Development Tool for Microsoft Dynamics AX 2012 WHITEPAPER

Security Development Tool for Microsoft Dynamics AX 2012 WHITEPAPER Security Development Tool for Microsoft Dynamics AX 2012 WHITEPAPER Junction Solutions documentation 2012 All material contained in this documentation is proprietary and confidential to Junction Solutions,

More information

SPHOL205: Introduction to Backup & Restore in SharePoint 2013. Hands-On Lab. Lab Manual

SPHOL205: Introduction to Backup & Restore in SharePoint 2013. Hands-On Lab. Lab Manual 2013 SPHOL205: Introduction to Backup & Restore in 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

More information

Introduction to Unified Device Management with Intune and System Center Configuration Manager

Introduction to Unified Device Management with Intune and System Center Configuration Manager Introduction to Unified Device Management with Intune and System Center Configuration Manager Most IT pros and the IT organizations they work for have the challenge of supporting a wide diversity of apps,

More information

Team Foundation Server 2012 Installation Guide

Team Foundation Server 2012 Installation Guide Team Foundation Server 2012 Installation Guide Page 1 of 143 Team Foundation Server 2012 Installation Guide Benjamin Day benday@benday.com v1.0.0 November 15, 2012 Team Foundation Server 2012 Installation

More information

Test Lab Guide: Creating a Windows Azure AD and Windows Server AD Environment using Azure AD Sync

Test Lab Guide: Creating a Windows Azure AD and Windows Server AD Environment using Azure AD Sync Test Lab Guide: Creating a Windows Azure AD and Windows Server AD Environment using Azure AD Sync Microsoft Corporation Published: December 2014 Author: Mark Grimes Acknowledgements Special thanks to the

More information

How to protect, restore and recover Exchange 2003 and Exchange 2007 databases

How to protect, restore and recover Exchange 2003 and Exchange 2007 databases How to protect, restore and recover Exchange 2003 and Exchange 2007 databases Introduction This document covers protection, restoration and recovery of Exchange Storage Groups. After data is protected

More information

Cisco TelePresence Management Suite Extension for Microsoft Exchange

Cisco TelePresence Management Suite Extension for Microsoft Exchange Cisco TelePresence Management Suite Extension for Microsoft Exchange Installation Guide D14846.01 June 2011 Software version 2.3 Contents Introduction 5 End user guidance 5 Server requirements 6 Exchange

More information