computer name, domain name, PDC emulator name,... always target the members directly override monitor Enabled/Disabled for a group

Size: px
Start display at page:

Download "computer name, domain name, PDC emulator name,... always target the members directly override monitor Enabled/Disabled for a group"

Transcription

1 Basic Monitors Ing. Ondřej Ševeček GOPAS a.s. MCM:Directory MVP:Enterprise Security CEH:Certified Ethical Hacker CHFI: Computer Hacking Forensic Investigator GOPAS: Targeting SCOM objects Hosted objects Windows Computer Windows Server Windows Domain Controller Windows Operating System Windows DNS Server Windows DNS Zone Active Directory Domain Controller Server 2008 Computer Role Unhosted objects (including Groups) monitors running on SCOM MS not always provide all necessary parameters 1

2 Choosing targets Physical presence on a computer All requested parameters computer name, domain name, PDC emulator name,... Targeting groups (unhosted objects) always target the members directly override monitor Enabled/Disabled for a group Target references filled by workflow manager and replaced in configuration and alert parameters only # Actual values from the target object $Target/Property[Type="Win!Microsoft.Windows.Computer"]/DomainDnsName$ $Target/Host/Host/Property[Type="Win!Microsoft.Windows.Computer"]/DomainDnsNa me$ # IDs for each attribute, not actual values $MPElement[Name="System!System.Entity"]/DisplayName$ $MPElement[Name="Windows!Microsoft.Windows.Computer"]/PrincipalName$ # Alert parameters from the last composite module in case of System.PropertyBagData <OutputType> $Data/Context/...$ $Data/Context/Property[@Name='BinaryPathName']$ 2

3 System.PropertyBag XML example property-bag-01-single-dataitem.ps1 property-bag-02-complex-dataitem.ps1 property-bag-03-multiple-dataitems.ps1 Simple service queries Service system name Check startup type monitors only if Automatic override CheckStartupType member using GUI set <CheckStartupType> element using XML 3

4 Service property bags # Condition expressions - # Alert replacements $Data/Context/Property[@Name='BinaryPathName']$ Event log monitoring Log system name System, Application,... Microsoft-Windows-TerminalServices- LocalSessionManager/Admin Source (PublisherName) name in system format Netlogon Microsoft-Windows-Security-Auditing Microsoft-Windows-ActiveDirectory_DomainServices Can use parameter names since Windows 6.0+ or use the Parameter1,... on older systems 4

5 Event log monitoring EventLevel 0 = Success 1 = Error 2 = Warning 4 = Information 8 = Audit Success 16 = Failure Audit EventCategory examples = Security Group Management = User Account Managent = Computer Account Management = Kerberos Service Ticket = Kerberos Authentication Service = Credentials Validation XPath primer States/State States/State[1] States//State States/*/State //State[population>30] //State[@code='CZ'] //State[population>30 //State[@language] //State[@continent='EU' and landlocked] States/State[last()] //State[last()] States/State[last()-1] States/State[position() > 5] //State[@code='cz'] //State[translate(@code,'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvw xyz')='cz'] 5

6 XPath primer //*[name()='state']/display //*[local-name()='state']/display //*[name()='state' and population>30]/display # Default namespace: xmlns=" //*[name()='state' and namespace-uri()=' # Namespace prefix: xmlns:sevecek=" //sevecek:state/displayname Event log property bags # Rules put the topmost DataItem contents into root element $Data/EventCategory$ # Monitors put the topmost DataItem XML into /Context $Data/Context/EventCategory$ $Data/Params/Param[1]$ # XPath indexes start with 1 # The EventData/Data use a different XML namespace # use name() or local-name() functions (the same result) $Data/Context/EventData/DataItem/*[name()='EventData']/*[name()='Data' In conditions, use only the XPathQuery EventData/DataItem/*[name()='EventData']/*[name()='Data' 6

7 WMI performance queries SELECT * FROM Win32_LogicalDisk WHERE DeviceId = "F:" Get-WmiObject -Query 'SELECT * FROM Win32_LogicalDisk WHERE DeviceId = "F:"' # Object: Sevecek Disk F: Low Space # Counter: FreeSpace # Property: $Data/Property[@Name='FreeSpace']$ # Instance: Disk F: WMI event queries SELECT * FROM InstanceCreationEvent WITHIN 35 WHERE TargetInstance ISA "Win32_Process" AND TargetInstance.Name = "mspaint.exe" # InstanceCreationEvent # InstanceDeletionEvent # InstanceModificationEvent # InstanceOperationEvent # In conditions, does not work with MP Simulator, do not use $Data/...$ # Filter: # Collection[@Name='TargetInstance']/Property[@Name='Name'] # Collection[@Name= PreviousInstance ]/Property[@Name='FileSize'] Register-WmiEvent -Query... -SourceIdentifier waitingformsp Wait-Event -SourceIdentifier waitingformsp 7

8 Example monitoring bad password trials vs. account lockout (monitors vs. rules) file size with CIM_DataFile free F: disk size Stop-Service KDC Stop-Service ADWS repadmin /options +DISABLE_OUTBOUND_REPL # verify that it does not monitor # HKLM\SYSTEM\CurrentControlSet\Services\NTDS\Parameters # Allow Replication with Divergent and Corrupt Partner # Strict Replication Consistency # Repl Perform Initial Synchronizations # verify that it does not monitor Smart Card service Elementary module types <ModuleImplementation> <Native>GUID</Native> <Managed>Assembly,Type</Managed> <Composite> <MemberModules> </ModuleImplementation> <InputType> <OutputType> 8

9 Composite modules (simple composition) parameter 1 parameter 2 parameter 3 A data stream parameter 4 parameter 5 B data stream parameter 6 parameter 7 parameter 8 C Composite modules (complex composition) parameter 1 parameter 2 parameter 3 A data stream parameter 4 parameter 5 B data stream parameter 9 Parallel D data stream parameter 6 parameter 7 parameter 8 C 9

10 Composite modules (scripted performance data collection with conditions) Frequency Synchronize Simple Scheduler DataSource System.BaseData ScriptName ScriptBody Timeout Script PropertyBag Probe ProbeAction System.PropertyBagData Expression ConditionDetection System. Expression Filter - Collect Performance Data WriteAction Object Counter Instance Value System. Performance. System.Performance.Data DataGeneric Mapper ConditionDetection System.BaseData <MemberModules> composition DataSource Microsoft.Windows.BaseEventProvider Microsoft.Windows.FilteredRegistryDiscoveryProvider Microsoft.Windows.RegistryDiscoveryProvider System.Discovery.Scheduler Microsoft.Windows.NTServiceStateProvider Microsoft.Windows.WmiEventProvider ProbeAction Microsoft.Windows.RegistryProbe Microsoft.Windows.WmiProbe Microsoft.Windows.WmiTriggerProbe System.PassThroughProbe System.CommandExecuterProbe Microsoft.Windows.ScriptPropertyBagProbe Microsoft.Windows.PowerShellDiscoveryProbe ConditionDetection returns the same output type as its input type, does not have <OutputType> System.ExpressionFilter WriteAction change system state (script, registry write,...) change OpsMgr dataset (write event, create alert,...) System.CommandExecuter System.Health.GenerateAlert Microsoft.SystemCenter.CollectPerformanceData 10

11 Two state unit monitor in PowerShell Microsoft.Windows.PowerShellPropertyBagProbe <TypeDefinitions> <UnitMonitorType> <MonitorTypeStates> <Configuration> <OverridableParameters> <MonitorImplementation> <MemberModules> <DataSource TypeID="System!System.SimpleScheduler"> <ProbeAction TypeID="Windows!Microsoft.Windows.PowerShellPropertyBagProbe"> <MemberModules> <ConditionDetection TypeID="System!System.ExpressionFilter"> <ConditionDetection TypeID="System!System.ExpressionFilter"> </MemberModules> <RegularDetections> <RegularDetection MonitorTypeStateID="Error"> <Node ID="ErrorFilter"> <Node ID="Script"> <Node ID="DataSource"> <RegularDetection MonitorTypeStateID="Success"> <Node ID="SuccessFilter"> <Node ID="Script"> <Node ID="DataSource"/> PowerShell scripts as parameter values in VSAE <ScriptBody>$IncludeFileContent/...ps1$</ScriptBody> 11

SCOM Infrastructure Recap

SCOM Infrastructure Recap SCOM Infrastructure Recap Ing. Ondřej Ševeček GOPAS a.s. MCM:Directory MVP:Enterprise Security CEH:Certified Ethical Hacker CHFI: Computer Hacking Forensic Investigator CISA ondrej@sevecek.com www.sevecek.com

More information

Modeling your infrastructure with SCOM

Modeling your infrastructure with SCOM Modeling your infrastructure with SCOM Ondřej Ševeček GOPAS a.s. MCM: Directory Services MVP: Enterprise Security CHFI CEH CISA ondrej@sevecek.com www.sevecek.com Agenda Brief SCOM recap Management packs

More information

Web Application Proxy

Web Application Proxy Application Proxy Ing. Ondřej Ševeček GOPAS a.s. MCSM:Directory2012 MCM:Directory2008 MVP:Enterprise Security CEH: Certified Ethical Hacker CHFI: Computer Hacking Forensic Investigator ondrej@sevecek.com

More information

411-Administering Windows Server 2012

411-Administering Windows Server 2012 411-Administering Windows Server 2012 Course Duration: 5 Days Module 1: Configuring and Troubleshooting Domain Name System This module explains how to configure and troubleshoot DNS, including DNS replication

More information

Build Your Knowledge!

Build Your Knowledge! About this Course Get hands-on instruction and practice administering, including R2, in this five-day Microsoft Official Course. This course is part two in a series of three courses that provides the skills

More information

This module explains how to configure and troubleshoot DNS, including DNS replication and caching.

This module explains how to configure and troubleshoot DNS, including DNS replication and caching. Module 1: Configuring and Troubleshooting Domain Name System This module explains how to configure and troubleshoot DNS, including DNS replication and caching. Configuring the DNS Server Role Configuring

More information

Monitoring Windows Event Logs

Monitoring Windows Event Logs Monitoring Windows Event Logs Monitoring Windows Event Logs Using OpManager The Windows event logs are files serving as a placeholder of all occurrences on a Windows machine. This includes logs on specific

More information

MS 6419 Configuring, Managing and Maintaining Windows Server 2008-based Servers

MS 6419 Configuring, Managing and Maintaining Windows Server 2008-based Servers MS 6419 Configuring, Managing and Maintaining Windows Server 2008-based Servers Description: Days: 5 Prerequisites: This five-day instructor-led course provides students with the knowledge and skills that

More information

User Identification (User-ID) Tips and Best Practices

User Identification (User-ID) Tips and Best Practices User Identification (User-ID) Tips and Best Practices Nick Piagentini Palo Alto Networks www.paloaltonetworks.com Table of Contents PAN-OS 4.0 User ID Functions... 3 User / Group Enumeration... 3 Using

More information

Module 10: Maintaining Active Directory

Module 10: Maintaining Active Directory Module 10: Maintaining Active Directory! Lesson: Backing Up Active Directory Topic: How to Back Up Active Directory! Lesson: Restoring Active Directory Topic: How to Perform a Primary Restore! Lesson:

More information

Administering Windows Server 2012

Administering Windows Server 2012 Course 20411D: Administering Windows Server 2012 Course Details Course Outline Module 1: Configuring and Troubleshooting Domain Name System This module explains how to configure and troubleshoot DNS, including

More information

20411 - Administering Windows Server 2012

20411 - Administering Windows Server 2012 20411 - Administering Windows Server 2012 Overview: The course is part two of a series of three courses, which provide the skills and knowledge necessary to implement a core Windows Server 2012 infrastructure

More information

User-ID Best Practices

User-ID Best Practices User-ID Best Practices PAN-OS 5.0, 5.1, 6.0 Revision A 2011, Palo Alto Networks, Inc. www.paloaltonetworks.com Table of Contents PAN-OS User-ID Functions... 3 User / Group Enumeration... 3 Using LDAP Servers

More information

MS-20411A: Administering Windows Server 2012

MS-20411A: Administering Windows Server 2012 MS-20411A: Administering Windows Server 2012 Introduction This version of this course 20411A utilizes pre-release software in the virtual machines for the labs. The course is part two of a series of three

More information

Contents. Supported Platforms. Event Viewer. User Identification Using the Domain Controller Security Log. SonicOS

Contents. Supported Platforms. Event Viewer. User Identification Using the Domain Controller Security Log. SonicOS SonicOS User Identification Using the Domain Controller Security Log Contents Supported Platforms... 1 Event Viewer... 1 Configuring Group Policy to Enable Logon Audit... 2 Events in Security Log... 4

More information

Course Outline. Configuring, Managing & Maintaining Windows 2008 Server. Course Description: Pre-requisites:

Course Outline. Configuring, Managing & Maintaining Windows 2008 Server. Course Description: Pre-requisites: Configuring, Managing & Maintaining Windows 2008 Server Course Description: This five-day instructor-led course combines five days worth of instructor-led training content from the Network Infrastructure

More information

Course Description. Course Page - Page 1 of 9. Administering Windows Server 2012 M-20411 Length: 5 days Price: $2,795.00

Course Description. Course Page - Page 1 of 9. Administering Windows Server 2012 M-20411 Length: 5 days Price: $2,795.00 Course Page - Page 1 of 9 Administering Windows Server 2012 M-20411 Length: 5 days Price: $2,795.00 Course Description Get hands-on instruction and practice administering Windows Server 2012, including

More information

Administering Windows Server 2012

Administering Windows Server 2012 www.etidaho.com (208) 327-0768 Course 20411D: Administering Windows Server 2012 5 Days About this Course Get hands on instruction and practice administering Windows Server 2012, including Windows Server

More information

Lesson Plans Managing a Windows 2003 Network Infrastructure

Lesson Plans Managing a Windows 2003 Network Infrastructure Lesson Plans Managing a Windows 2003 Network Infrastructure (Exam 70-291) Table of Contents Course Overview... 2 Section 0.1: Introduction... 3 Section 1.1: Client Configuration... 4 Section 1.2: IP Addressing...

More information

Administering Windows Server 2012

Administering Windows Server 2012 Administering Windows Server 2012 Course Details Duration: Course code: 5 Days M20411 Overview: Get hands-on instruction and practice administering Windows Server 2012, including Windows Server 2012 R2,

More information

Configuring Managing and Maintaining Windows Server 2008 Servers (6419B)

Configuring Managing and Maintaining Windows Server 2008 Servers (6419B) Configuring Managing and Maintaining Windows Server 2008 Servers (6419B) Who Should Attend This course is intended for Windows Server administrators who operate Windows Servers on a daily basis and want

More information

Configuring, Managing and Maintaining Windows Server 2008-based Servers

Configuring, Managing and Maintaining Windows Server 2008-based Servers Course 6419B: Configuring, Managing and Maintaining Windows Server 2008-based Servers OVERVIEW About this Course This five-day instructor-led course provides students with the knowledge and skills that

More information

Release Notes: SANsymphony-V System Center Operations Manager (SCOM) Management Pack 1.3

Release Notes: SANsymphony-V System Center Operations Manager (SCOM) Management Pack 1.3 Release Notes Cumulative Change Summary Date Original 1.0 release November 1, 2011 Added additional troubleshooting notes April 3, 2012 Clarified Management Pack Software Requirements; added known issue

More information

Directory Backup and Restore

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

More information

IT SYSTEMS ADMINISTRATOR PROGRAM

IT SYSTEMS ADMINISTRATOR PROGRAM NH204-1011 Installing, Configuring & Administrating 136 Total Hours Windows Server 2012 COURSE TITLE: Installing, Configuring & Administrating Windows Server 2012 COURSE OVERVIEW: After completing this

More information

EMC CLARiiON PRO Storage System Performance Management Pack Guide for Operations Manager 2007. Published: 04/14/2011

EMC CLARiiON PRO Storage System Performance Management Pack Guide for Operations Manager 2007. Published: 04/14/2011 EMC CLARiiON PRO Storage System Performance Management Pack Guide for Operations Manager 2007 Published: 04/14/2011 Copyright EMC2, EMC, and where information lives are registered trademarks or trademarks

More information

Course 6419B: Configuring, Managing and Maintaining Windows Server 2008-based Servers

Course 6419B: Configuring, Managing and Maintaining Windows Server 2008-based Servers Course 6419B: Configuring, Managing and Maintaining Windows Server 2008-based Servers Length: Delivery Method: 5 Days Instructor-led (classroom) About this Course This five-day instructor-led course provides

More information

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

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

More information

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

6419: Configuring, Managing, and Maintaining Server 2008

6419: Configuring, Managing, and Maintaining Server 2008 6419: Configuring, Managing, and Maintaining Server 2008 Course Number: 6419 Category: Technical Duration: 5 days Course Description This five-day instructor-led course combines five days worth of instructor-led

More information

COURSE 20411D: ADMINISTERING WINDOWS SERVER 2012

COURSE 20411D: ADMINISTERING WINDOWS SERVER 2012 ABOUT THIS COURSE Get hands-on instruction and practice administering Windows Server 2012, including Windows Server 2012 R2, in this five-day Microsoft Official course. This course is part two in a series

More information

Course 20411. Administering Windows Server 2012. About this Course. Level: 200 Technology: Windows Server 2012

Course 20411. Administering Windows Server 2012. About this Course. Level: 200 Technology: Windows Server 2012 Course 20411 Administering Windows Server 2012 Length: 5 Days Language(s): English Audience(s): IT Professionals Level: 200 Technology: Windows Server 2012 Type: Course Delivery Method: Instructor-led

More information

Administering Windows Server 2012

Administering Windows Server 2012 Course Code: M20411 Vendor: Microsoft Course Overview Duration: 5 RRP: 2,025 Administering Windows Server 2012 Overview Get hands-on instruction and practice administering Windows Server 2012, including

More information

Administering Windows Server 2012

Administering Windows Server 2012 WINDOWS 2012 COURSE OUTLINE Visit Our Website to Enroll Now Www.ITBigBang.Com/IT-Training Administering Windows Server 2012 Course Title Administering Windows Server 2012 Course Code 20411D Days / Duration

More information

Windows Server 2012 R2 Certification

Windows Server 2012 R2 Certification About this Course Administering Windows Server 2012 Get hands-on instruction and practice administering Windows Server 2012, including Windows Server 2012 R2, in this five-day Microsoft Official Course.

More information

Active Directory 2008 Audit Management Pack Guide for Operations Manager 2007 and Essentials 2010

Active Directory 2008 Audit Management Pack Guide for Operations Manager 2007 and Essentials 2010 Active Directory 2008 Audit Management Pack Guide for Operations Manager 2007 and Essentials 2010 Published: June 2010 Version: 6.0.5000.0 Copyright 2010 All rights reserved Terms of Use All management

More information

Configuring, Managing and Maintaining Windows Server 2008 Servers

Configuring, Managing and Maintaining Windows Server 2008 Servers Configuring, Managing and Maintaining Windows Server 2008 Servers MOC6419 About this Course This five-day instructor-led course combines five days worth of instructor-led training content from the Network

More information

Administering Windows Server 2012

Administering Windows Server 2012 Course 20411C Administering Windows Server 2012 Course Length: 5 days Overview Get hands-on instruction and practice administering Windows Server 2012, including Windows Server 2012 R2, in this 5-day Microsoft

More information

Dell Spotlight on Active Directory 6.8.4. Deployment Guide

Dell Spotlight on Active Directory 6.8.4. Deployment Guide Dell Spotlight on Active Directory 6.8.4 2014 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under

More information

Administering Windows Server 2012

Administering Windows Server 2012 Course 20411D: Administering Windows Server 2012 Page 1 of 8 Administering Windows Server 2012 Course 20411D: 4 days; Instructor-Led Introduction Get hands-on instruction and practice administering Windows

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

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

Windows 7, Enterprise Desktop Support Technician

Windows 7, Enterprise Desktop Support Technician Course 50331D: Windows 7, Enterprise Desktop Support Technician Page 1 of 11 Windows 7, Enterprise Desktop Support Technician Course 50331D: 4 days; Instructor-Led Introduction This four-day instructor-ledcourse

More information

Windows Server 2012 / Windows 8 Audit Fundamentals

Windows Server 2012 / Windows 8 Audit Fundamentals Windows Server 2012 / Windows 8 Audit Fundamentals Jacksonville ISACA Chapter May 17, Speaker Introduction: Timothy P. McAliley 13+ years in IT Currently work for Microsoft Premier Field Engineer SQL Server,

More information

Windows 7, Enterprise Desktop Support Technician Course 50331: 5 days; Instructor-led

Windows 7, Enterprise Desktop Support Technician Course 50331: 5 days; Instructor-led Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Windows 7, Enterprise Desktop Support Technician Course 50331: 5 days; Instructor-led

More information

"Charting the Course... MOC 20411 D Administering Windows Server 2012. Course Summary

Charting the Course... MOC 20411 D Administering Windows Server 2012. Course Summary Course Summary Description Get hands-on instruction and practice administering Windows Server 2012, including Windows Server 2012 R2, in this five-day Microsoft Official Course. This course is part two

More information

MS 70-411 Exam Objectives Administering Windows Server 2012 R2

MS 70-411 Exam Objectives Administering Windows Server 2012 R2 MS 70-411 Exam Objectives Administering Windows Server 2012 R2 Below are the exam objectives for Administering Windows Server 2012 R2 Exam 70-411 Tasks measured as per latest update implemented in January

More information

Windows Scheduled Task and PowerShell Scheduled Job Management Pack Guide for Operations Manager 2012

Windows Scheduled Task and PowerShell Scheduled Job Management Pack Guide for Operations Manager 2012 Windows Scheduled Task and PowerShell Scheduled Job Management Pack Guide for Operations Manager 2012 Published: July 2014 Version 1.2.0.500 Copyright 2007 2014 Raphael Burri, All rights reserved Terms

More information

Windows PowerShell Cookbook

Windows PowerShell Cookbook Windows PowerShell Cookbook Lee Holmes O'REILLY' Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo Table of Contents Foreword Preface xvii xxi Part I. Tour A Guided Tour of Windows PowerShell

More information

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

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

More information

CERTIFICATES AND CRYPTOGRAPHY

CERTIFICATES AND CRYPTOGRAPHY Ing. Ondřej Ševeček GOPAS a.s. MCM: Directory Services MVP: Enterprise Security Certified Ethical Hacker ondrej@sevecek.com www.sevecek.com CERTIFICATES AND CRYPTOGRAPHY Troubleshooting Remote Access MOTIVATION

More information

Configuring, Managing and Maintaining Windows Server 2008 Servers

Configuring, Managing and Maintaining Windows Server 2008 Servers Configuring, Managing and Maintaining Windows Server 2008 Servers About this Course This five-day instructor-led course combines five days worth of instructor-led training content from the Network Infrastructure

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

"Charting the Course... ... to Your Success!" MOC 50331 D Windows 7 Enterprise Desktop Support Technician Course Summary

Charting the Course... ... to Your Success! MOC 50331 D Windows 7 Enterprise Desktop Support Technician Course Summary Description Course Summary This course provides students with the knowledge and skills needed to isolate, document and resolve problems on a Windows 7 desktop or laptop computer. It will also help test

More information

Administering Windows Server 2012 Course M20411 5 Day(s) 30:00 Hours

Administering Windows Server 2012 Course M20411 5 Day(s) 30:00 Hours Área de formação Plataforma e Tecnologias de Informação Administering Windows Introduction Get hands-on instruction and practice administering Windows, including Windows R2, in this five-day Microsoft

More information

Basic principles of infrastracture security Impersonation, delegation and code injection

Basic principles of infrastracture security Impersonation, delegation and code injection Basic principles of infrastracture security Impersonation, delegation and code injection Ondřej Ševeček GOPAS a.s. MCM: Directory Services MVP: Enterprise Security CHFI CEH CISA ondrej@sevecek.com www.sevecek.com

More information

Configuring, Managing and Maintaining Windows Server 2008 Servers

Configuring, Managing and Maintaining Windows Server 2008 Servers Configuring, Managing and Maintaining Windows Server 2008 Servers Elements of this syllabus are subject to change Course Details Course Code: 6419 Duration: Notes: 5 day(s) This course syllabus should

More information

Idera SQL Diagnostic Manager Management Pack Guide for System Center Operations Manager. Install Guide. Idera Inc., Published: April 2013

Idera SQL Diagnostic Manager Management Pack Guide for System Center Operations Manager. Install Guide. Idera Inc., Published: April 2013 Idera SQL Diagnostic Manager Management Pack Guide for System Center Operations Manager Install Guide Idera Inc., Published: April 2013 Contents Introduction to the Idera SQL Diagnostic Manager Management

More information

16) INFORMATION SECURITY INCIDENT MANAGEMENT

16) INFORMATION SECURITY INCIDENT MANAGEMENT Ing. Ondřej Ševeček GOPAS a.s. MCM: Directory Services MVP: Enterprise Security CHFI: Computer Hacking Forensic Investigator CISA CEH: Certified Ethical Hacker ondrej@sevecek.com www.sevecek.com 16) INFORMATION

More information

Exam 70-411: Administrating Windows Server 2012 R2. Course Overview

Exam 70-411: Administrating Windows Server 2012 R2. Course Overview Exam 70-411: Administrating Windows Server 2012 R2 Course Overview This course teaches students server deployment and image management, managing servers and updates, file and print services, configuring

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

Administering Windows Server 2012

Administering Windows Server 2012 Course 20411C: Administering Windows Server 2012 Page 1 of 8 Administering Windows Server 2012 Course 20411C: 4 days; Instructor-Led Introduction Get hands-on instruction and practice administering Windows

More information

Course 6419A: Configuring, Managing and Maintaining Windows Server 2008 Servers

Course 6419A: Configuring, Managing and Maintaining Windows Server 2008 Servers Course 6419A: Configuring, Managing and Maintaining Windows Server 2008 Servers Duration 5 Days About this Course This five-day instructor-led course combines five days worth of instructor-led training

More information

Monitoring Windows Servers and Applications with GroundWork Monitor Enterprise 6.7. Product Application Guide October 8, 2012

Monitoring Windows Servers and Applications with GroundWork Monitor Enterprise 6.7. Product Application Guide October 8, 2012 Monitoring Windows Servers and Applications with GroundWork Monitor Enterprise 6.7 Product Application Guide October 8, 2012 Table of Contents Introduction...3 Definitions and Abbreviations...3 GroundWork

More information

MS6419B: Configuring, Managing and Maintaining Windows Server 2008-Based Servers

MS6419B: Configuring, Managing and Maintaining Windows Server 2008-Based Servers 40 HORAS INTRODUCTION This five-day instructor-led course provides students with the knowledge and skills that are required to manage accounts and resources, maintain server resources, monitor server performance,

More information

Course 20411D: Administering Windows Server 2012

Course 20411D: Administering Windows Server 2012 Course 20411D: Administering Windows Server 2012 Five Days, Instructor Led About this course Get hands-on instruction and practice administering Windows Server 2012, including Windows Server 2012 R2, in

More information

Active Directory & SQL Server

Active Directory & SQL Server Active Directory & SQL Server How AD can affect your SQL Servers Ryan Adams Blog - http://ryanjadams.com Twitter - @ryanjadams Email ryan@ryanjadams.com DNS Group Policy Security Groups Password Policies

More information

Microsoft. Official Course. Introduction to Active Directory Domain Services. Module 2

Microsoft. Official Course. Introduction to Active Directory Domain Services. Module 2 Microsoft Official Course Module 2 Introduction to Active Directory Domain Services Module Overview Overview of AD DS Overview of Domain Controllers Installing a Domain Controller Lesson 1: Overview of

More information

Dell Compellent Storage Center

Dell Compellent Storage Center Dell Compellent Storage Center Active Directory Integration Best Practices Guide Dell Compellent Technical Solutions Group January, 2013 THIS BEST PRACTICES GUIDE IS FOR INFORMATIONAL PURPOSES ONLY, AND

More information

Administering Windows Server 2012

Administering Windows Server 2012 Administering Windows Server 2012 Course Summary Configuring and Troubleshooting Domain Name System Maintaining Active Directory Domain Services Managing User and Service Accounts Implementing a Group

More information

MS 20411 Administering Windows Server 2012

MS 20411 Administering Windows Server 2012 P a g e 1 of 9 MS 20411 Administering Windows Server 2012 About this Course Learn how to administer Windows Server 2012 with this five-day course. This course is part two in a series of three courses that

More information

Administering Windows Server 2012 MOC 20411

Administering Windows Server 2012 MOC 20411 Administering Windows Server 2012 MOC 20411 Course Outline Module 1: Deploying and Maintaining Server Images This module explains the functionality of Windows Deployment Services, and explains how to use

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

Managing and Maintaining Windows Server 2008 Active Directory Servers

Managing and Maintaining Windows Server 2008 Active Directory Servers Managing and Maintaining Windows Server 2008 Active Directory Servers Course Number: 6432A Course Length: 2 Days Course Overview This two-day instructor-led course provides students with the knowledge

More information

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

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

More information

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

Integration Guide. Help Desk Authority, Perspective and sl360. 1.800.424.9411 www.scriptlogic.com

Integration Guide. Help Desk Authority, Perspective and sl360. 1.800.424.9411 www.scriptlogic.com Integration Guide Help Desk Authority, Perspective and sl360 1.800.424.9411 www.scriptlogic.com Table of Contents Introduction... 3 Product Overview... 3 Benefits of Product Integration... 3 Advanced Help

More information

Partie Serveur 2008. Lab : Implement Group Policy. Create, Edit and Link GPOs. Lab : Explore Group Policy Settings and Features

Partie Serveur 2008. Lab : Implement Group Policy. Create, Edit and Link GPOs. Lab : Explore Group Policy Settings and Features Partie Serveur 2008 Implement a Group Policy Infrastructure This module explains what Group Policy is, how it works, and how best to implement Group Policy in your organization. Understand Group Policy

More information

Outline SSS6425 - Configuring and Troubleshooting Windows Server 2008 Active Directory

Outline SSS6425 - Configuring and Troubleshooting Windows Server 2008 Active Directory Outline SSS6425 - Configuring and Troubleshooting Windows Server 2008 Active Directory Duration: Four consecutive Saturdays About this Course This instructor-led course provides the knowledge and skills

More information

ADVANCED WINDOWS SECURITY

ADVANCED WINDOWS SECURITY Ondřej Ševeček GOPAS a.s. MCM: Directory Services MVP: Enterprise Security ondrej@sevecek.com www.sevecek.com ADVANCED WINDOWS SECURITY Outline Recap of basic security principles Local and Active Directory

More information

Windows Server. Introduction to Windows Server 2008 and Windows Server 2008 R2

Windows Server. Introduction to Windows Server 2008 and Windows Server 2008 R2 Copyright 2006-2013 MilliByte SS Windows Server DƏRS Introduction to Windows Server 2008 and Windows Server 2008 R2 Functionality of Windows Server 2008 Windows Server 2008 Editions 1 Microsoft Hyper-V

More information

How to install Small Business Server 2003 in an existing Active

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

More information

Course 20411B: Administering Windows Server 2012

Course 20411B: Administering Windows Server 2012 Course 20411B: Administering Windows Server 2012 Length: 5 Days Published: January 04, 2013 Language(s): English Audience(s): IT Professionals Level: 200 Technology: Windows Server 2012 Type: Course Delivery

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

NETWRIX ACCOUNT LOCKOUT EXAMINER

NETWRIX ACCOUNT LOCKOUT EXAMINER NETWRIX ACCOUNT LOCKOUT EXAMINER ADMINISTRATOR S GUIDE Product Version: 4.1 July 2014. Legal Notice The information in this publication is furnished for information use only, and does not constitute a

More information

Administering Windows Server 2012

Administering Windows Server 2012 20411D - Version: 1 25 June 2016 Administering Windows Server 2012 Administering Windows Server 2012 20411D - Version: 1 5 days Course Description: Get hands-on instruction and practice administering Windows

More information

White Paper Monitoring Active Directory Using System Center Operations Manager 2007 R2

White Paper Monitoring Active Directory Using System Center Operations Manager 2007 R2 White Paper Monitoring Active Directory Using System Center Operations Manager 2007 R2 Abstract Active Directory is a key component in many organizations IT infrastructure. This white paper discusses on

More information

Walton Centre. Document History Date Version Author Changes 01/10/04 1.0 A Cobain L Wyatt 31/03/05 1.1 L Wyatt Update to procedure

Walton Centre. Document History Date Version Author Changes 01/10/04 1.0 A Cobain L Wyatt 31/03/05 1.1 L Wyatt Update to procedure Page 1 Walton Centre Access and Authentication (network) Document History Date Version Author Changes 01/10/04 1.0 A Cobain L Wyatt 31/03/05 1.1 L Wyatt Update to procedure Page 2 Table of Contents Section

More information

Administering Windows Server 2012

Administering Windows Server 2012 CÔNG TY CỔ PHẦN TRƯỜNG CNTT TÂN ĐỨC TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC LEARN MORE WITH LESS! Course 20411D Administering Windows Server 2012 Length: 5 Days Audience: IT Professionals Level: 200

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

Installing, Configuring, and Managing a Microsoft Active Directory

Installing, Configuring, and Managing a Microsoft Active Directory Installing, Configuring, and Managing a Microsoft Active Directory Course Outline Part 1: Configuring and Managing Active Directory Domain Services Installing Active Directory Domain Services Managing

More information

NE-20411D Administering Windows Server 2012

NE-20411D Administering Windows Server 2012 NE-20411D Administering Windows Server 2012 Summary Duration Vendor Audience 5 Days Microsoft IT Professionals Published Level Technology 13 May 2014 200 Windows Server 2012 Delivery Method Instructor-led

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

20411 - Administering Windows Server 2012

20411 - Administering Windows Server 2012 20411 - Administering Windows Server 2012 Duration: 5 Days Course Price: $2,975 Software Assurance Eligible Course Description Course Overview Get hands-on instruction and practice administering Windows

More information

Red Hat Identity Management

Red Hat Identity Management Red Hat Identity Management Overview Thorsten Scherf Senior Consultant Red Hat Global Professional Services Agenda What is Red Hat Identity Management? Main values Architecture Features Active Directory

More information

70-417: Upgrading Your Skills to MCSA Windows Server 2012

70-417: Upgrading Your Skills to MCSA Windows Server 2012 70-417: Upgrading Your Skills to MCSA Windows Server 2012 Course Overview This course prepares students to demonstrate your real-world knowledge of Windows Server 2012 core infrastructure services. Exam

More information

Module 3: Resolve Software Failure This module explains how to fix problems with applications that have problems after being installed.

Module 3: Resolve Software Failure This module explains how to fix problems with applications that have problems after being installed. CÔNG TY CỔ PHẦN TRƯỜNG CNTT TÂN ĐỨC TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC LEARN MORE WITH LESS! 50331 - Windows 7, Enterprise Desktop Support Technician Duration: 5 days About this Course This five-day

More information

Training Name Installing and Configuring Windows Server 2012

Training Name Installing and Configuring Windows Server 2012 Training Name Installing and Configuring Windows Server 2012 Exam Code 70 410 At Course Completion After completing this course, students will be able to: Install and configure Windows Server 2012. Describe

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

OPAS Prerequisites. Prepared By: This document contains the prerequisites and requirements for setting up OPAS.

OPAS Prerequisites. Prepared By: This document contains the prerequisites and requirements for setting up OPAS. OPAS Prerequisites This document contains the prerequisites and requirements for setting up OPAS. Prepared By: Luke Swords Principal Consultant 24/06/2015 Version 1.0 Contact Information Infront Consulting

More information