Windows PowerShell Fundamentals

Size: px
Start display at page:

Download "Windows PowerShell Fundamentals"

Transcription

1 Windows PowerShell Fundamentals Steven Murawski Senior Windows Systems Engineer Microsoft MVP This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License. To view a copy of this license, visit or send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.

2 Who I am Name Steven Murawski Occupation Senior Windows System Engineer Blog UsePowerShell.com Twitter Microsoft MVP - PowerShell

3 Agenda What is PowerShell? Terminology The Big 4 Working from the Shell Workstations and Servers Active Directory Exchange Q & A (time permitting)

4 Agenda What is PowerShell? Terminology The Big 4 Working from the Shell Workstations and Servers Active Directory Exchange Q & A (time permitting)

5 Command Line What is PowerShell?

6 What is PowerShell? Scripting Language

7 What is PowerShell? Most importantly though it is an Automation Tool. PowerShell offers a unifying management surface in which to manage your Windows (and other) environment.

8 Agenda What is PowerShell? Terminology The Big 4 Working from the Shell Workstations and Servers Active Directory Exchange PowerShell V3 Sneak Peak Q & A (time permitting)

9 Terminology Cmdlet Functions Objects Pipeline

10 Terminology Cmdlets The basic unit of work in PowerShell. These are PowerShell s native commands. They are called cmdlets (small commands) because they embrace the Unix philosophy of small tools which can be used compose new solutions

11 Terminology Functions Functions are a series of PowerShell statements (or commands) that are given a name and saved in memory for a particular session. There are several types of functions: V1 style function Filter Advanced function

12 Terminology Objects PowerShell is an object-based shell. Objects are a binding of data and actions. What this really means is that when you execute a command, you can more easily ask questions of the result. Being object based also gives PowerShell the ability to provide generalized format, display, and export capabilities.

13 Terminology Pipeline The pipeline is a central concept in PowerShell which allows you to take the output from one command and make it the input for the next command. It has long been the case that shell commands can take input from other commands (or files, or other sources). The pipeline in PowerShell can leverage the object based and utilize some components of the runtime to make transitions between commands more effective.

14 Agenda What is PowerShell? Terminology The Big 4 Working from the Shell Workstations and Servers Active Directory Exchange PowerShell V3 Sneak Peak Q & A (time permitting)

15 The Big Four Navigational And Discovery Commands Get-Command Get-Help Get-Member Get-PSDrive

16 The Big Four Get-Command Get-Command will list any valid command (executables, functions, cmdlets, aliases). It can also provide some additional metadata about PowerShell commands and scripts.

17 The Big Four Get-Help This is the man equivalent for PowerShell. Get-Help offers several levels of help Basic Detailed Full Examples Individual Parameters

18 The Big Four Get-Member Since PowerShell is an object-based shell, Get- Member allows you to examine the objects output from different commands. This is probably the most important discovery command.

19 The Big Four Get-PSDrive PowerShell offers the capability to expose various information sources (providers) like a file system. Get-PSDrive lists the mapped providers and where or how they are mounted.

20 Agenda What is PowerShell? Terminology The Big 4 Working from the Shell Workstations and Servers Active Directory Exchange PowerShell V3 Sneak Peak Q & A (time permitting)

21 Working From the Shell Navigating Providers Providers offer a way to navigate different data sources via the same commands. Providers File System Registry Others

22 Working From the Shell Navigating the File System Items and Containers Item Properties

23 Working From the Shell Digging in the Registry PowerShell provides access to the registry via a provider. This allows the registry to be navigated like the file system. Keys and subkeys are represented as items (like files and directories. Registry values and data are represented as properties of the items.

24 Working From the Shell Other Providers Built in Alias Certificate File System Function Registry Variable WSMan Others SQL Server Active Directory

25 Working From the Shell Dealing with Objects Formatting Output Filtering Output Using the Pipeline

26 Working From the Shell Formatting Output Format-Table Format-List Format-Custom ConvertTo-XML ConvertTo-HTML ConvertTo-CSV Export-CliXML Export-CSV

27 Working From the Shell Filtering output Native Filtering in Commands Usually preferred, but can vary based on the command and data type. If the target of the command is remote, filtering could be done at the source. Where-Object Uses a scriptblock (PowerShell statements surrounded by braces) Works on any object in the PowerShell Pipeline Works locally in the current PowerShell session

28 Working From the Shell Using the Pipeline PowerShell pipes objects. Cmdlets, scripts, and functions can take full objects as arguments. Properties of objects can be automatically mapped to parameters of cmdlets, scripts, or functions. Scriptblocks can be used to transform input.

29 Agenda What is PowerShell? Terminology The Big 4 Working from the Shell Workstations and Servers Active Directory Exchange PowerShell V3 Sneak Peak Q & A (time permitting)

30 Working with Workstations and Working with WMI Servers Get-WMIObject is the key command when working with WMI. Get-WMIObject List What s stored in WMI? Just about everything! Hardware information System Configuration Application Data And more..

31 Working with Workstations and Servers Editing the Registry Via the Provider Can use it locally Can use it remotely if PowerShell Remoting is enabled. Using.NET More familiar to.net developers. Using WMI More familiar to those with VBScript experience

32 Working with Workstations and Servers Working with Text Select-String Operators Match Replace Split Regular Expressions

33 Working with Workstations and Servers Working with Remote Machines WMI Available on most machines. Requires a knowledge of WMI (which is not very consistent) PowerShell Remoting Requires Windows XP SP3/Server 2003 SP2 or higher and WinRM

34 Agenda What is PowerShell? Terminology The Big 4 Working from the Shell Workstations and Servers Active Directory Exchange PowerShell V3 Sneak Peak Q & A (time permitting)

35 Working with Active Directory ADSI Available on any machine Obscure Quest s AD Cmdlets Task based Excellent Coverage Server 2003 Domains or above 3 rd Party Microsoft s AD Module Only available on Windows 7 or Server 2008 R2 Server 2003 Domains or above. If DC s are not 2008 R2, AD Web Services are required.

36 Working with Active Directory Common Tasks Resetting Passwords Finding Disabled Users Finding Expired Computer Accounts

37 Agenda What is PowerShell? Terminology The Big 4 Working from the Shell Workstations and Servers Active Directory Exchange PowerShell V3 Sneak Peak Q & A (time permitting)

38 Working with Exchange Common Tasks Monitor Message Queues (Exchange 2003) Monitor Message Queues (Exchange 2007/2010) Identify all ActiveSync Devices Connected (Exchange 2010)

39 Agenda What is PowerShell? Terminology The Big 4 Working from the Shell Workstations and Servers Active Directory Exchange PowerShell V3 Sneak Peak Q & A (time permitting)

40 V3 Sneak Peak PowerShell V3 Windows 8 Workflows Resilient Sessions Disconnected Sessions Autoloading of Modules And more

41 Agenda What is PowerShell? Terminology The Big 4 Working from the Shell Workstations and Servers Active Directory Exchange PowerShell V3 Sneak Peak Q & A (time permitting)

42 Q and A I m sure no one has any questions, so we can just hang out.. But on the off chance that some has any questions, where can we get some answers? PowerShell.Org ServerFault.com UsePowerShell.Com

SUNGARD SUMMIT 2007 sungardsummit.com 1. Microsoft PowerShell. Presented by: Jeff Modzel. March 22, 2007 Course ID 453. A Community of Learning

SUNGARD SUMMIT 2007 sungardsummit.com 1. Microsoft PowerShell. Presented by: Jeff Modzel. March 22, 2007 Course ID 453. A Community of Learning SUNGARD SUMMIT 2007 sungardsummit.com 1 Microsoft PowerShell Presented by: Jeff Modzel March 22, 2007 A Community of Learning Agenda Introduction to PowerShell PowerShell Power Developer Angle Long Term

More information

WolfTech Active Directory: PowerShell

WolfTech Active Directory: PowerShell WolfTech Active Directory: PowerShell March 7th, 2012 2-4pm Daniels 201 http://activedirectory.ncsu.edu What we are going to cover... Powershell Basics Listing Properties and Methods of Commandlets.Net

More information

Acknowledgments Finding Your Way Around Windows PowerShell p. 1 Getting Started with Windows PowerShell p. 3 Installing Windows PowerShell p.

Acknowledgments Finding Your Way Around Windows PowerShell p. 1 Getting Started with Windows PowerShell p. 3 Installing Windows PowerShell p. Introduction p. xv Acknowledgments p. xx Finding Your Way Around Windows PowerShell p. 1 Getting Started with Windows PowerShell p. 3 Installing Windows PowerShell p. 3 Installing.NET Framework 2.0 p.

More information

Microsoft. Jump Start. M3: Managing Windows Server 2012 by Using Windows PowerShell 3.0

Microsoft. Jump Start. M3: Managing Windows Server 2012 by Using Windows PowerShell 3.0 Microsoft Jump Start M3: Managing Windows Server 2012 by Using Windows PowerShell 3.0 Rick Claus Technical Evangelist Microsoft Ed Liberman Technical Trainer Train Signal Jump Start Target Agenda Day One

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

Microsoft Windows PowerShell v2 For Administrators

Microsoft Windows PowerShell v2 For Administrators Course 50414B: Microsoft Windows PowerShell v2 For Administrators Course Details Course Outline Module 1: Introduction to PowerShell the Basics This module explains how to install and configure PowerShell.

More information

Automating Microsoft

Automating Microsoft Automating Microsoft Windows Server 2008 R2 with Windows PowerShell 2.0 Matthew Hester Sarah Dutkiewicz WILEY Wiley Publishing. Inc. TABLE OF CONTENTS Introduction xvii Chapter 1 What Is PowerShell, and

More information

PowerShell for Dummies

PowerShell for Dummies PowerShell for Dummies Project: Supervision Targeted Product: GSX Monitor & Analyzer Content Introduction: A Bit of History... 3 Starting with PowerShell... 4 Prerequisites... 5 Exchange Management Shell...

More information

POWERSHELL (& SHAREPOINT) This ain t your momma s command line!

POWERSHELL (& SHAREPOINT) This ain t your momma s command line! POWERSHELL (& SHAREPOINT) This ain t your momma s command line! JAMYE FEW SENIOR CONSULTANT 12+ years as IT Professional ( IT PRO duck DEV ) A little IT PRO, little more DEV and a lot of ducking. Certifiable

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

Microsoft Visual Basic Scripting Edition and Microsoft Windows Script Host Essentials

Microsoft Visual Basic Scripting Edition and Microsoft Windows Script Host Essentials Microsoft Visual Basic Scripting Edition and Microsoft Windows Script Host Essentials 2433: Microsoft Visual Basic Scripting Edition and Microsoft Windows Script Host Essentials (3 Days) About this Course

More information

WHITE PAPER POWERSHELL FOR DUMMIES HOW TO KEEP TRACK OF

WHITE PAPER POWERSHELL FOR DUMMIES HOW TO KEEP TRACK OF White Paper PowerShell for Exchange- Beginner level to average GSX SOLUTIONS WHITE PAPER POWERSHELL FOR DUMMIES HOW TO KEEP TRACK OF YOUR EXCHANGE Project: Supervision Targeted Product: GSX Monitor & Analyzer

More information

Forefront Management Shell PowerShell Management of Forefront Server Products

Forefront Management Shell PowerShell Management of Forefront Server Products Forefront Management Shell PowerShell Management of Forefront Server Products Published: October, 2009 Software version: Forefront Protection 2010 for Exchange Server Mitchell Hall Contents Introduction...

More information

Lab Answer Key for Module 1: Installing and Configuring Windows Server 2008. Table of Contents Lab 1: Configuring Windows Server 2008 1

Lab Answer Key for Module 1: Installing and Configuring Windows Server 2008. Table of Contents Lab 1: Configuring Windows Server 2008 1 Lab Answer Key for Module 1: Installing and Configuring Windows Server 2008 Table of Contents Lab 1: Configuring Windows Server 2008 1 Information in this document, including URL and other Internet Web

More information

Using Windows PowerShell to Manage SharePoint 2010

Using Windows PowerShell to Manage SharePoint 2010 The release of SharePoint 2010 (both SharePoint Foundation and SharePoint Server) offers welcome support for Windows PowerShell. Of course it has always been technically possible to use PowerShell to manage

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

126 SW 148 th Street Suite C-100, #105 Seattle, WA 98166 Tel: 877-795-9372 Fax: 866-417-6192 www.seattlepro.com

126 SW 148 th Street Suite C-100, #105 Seattle, WA 98166 Tel: 877-795-9372 Fax: 866-417-6192 www.seattlepro.com SharePoint 2010 Bootcamp This five-day course is designed to equip Systems Administrators, Integrators and Developers with a strong foundation for implementing solutions on Microsoft SharePoint 2010. Attendees

More information

Avatier Identity Management Suite

Avatier Identity Management Suite Avatier Identity Management Suite Integrating Exchange 2010 With Identity Enforcer Version 9 2603 Camino Ramon Suite 110 San Ramon, CA 94583 Phone: 800-609-8610 925-217-5170 FAX: 925-217-0853 Email: support@avatier.com

More information

Click Studios. Passwordstate. Password Discovery, Reset and Validation. Requirements

Click Studios. Passwordstate. Password Discovery, Reset and Validation. Requirements Passwordstate Password Discovery, Reset and Validation Requirements This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise

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

Exploring PowerShell. Using Windows PowerShell

Exploring PowerShell. Using Windows PowerShell 733 Exploring PowerShell Before using PowerShell, you might want to become more familiar with its cmdlets and features. To assist administrators with exploring PowerShell, the PowerShell team decided to

More information

Automating. Administration. Microsoft SharePoint 2010. with Windows. PowerShell 2.0. Gary Lapointe Shannon Bray. Wiley Publishing, Inc.

Automating. Administration. Microsoft SharePoint 2010. with Windows. PowerShell 2.0. Gary Lapointe Shannon Bray. Wiley Publishing, Inc. Automating Microsoft SharePoint 2010 Administration with Windows PowerShell 2.0 Gary Lapointe Shannon Bray WILEY Wiley Publishing, Inc. TABLE OF CONTENTS B S8 0 «4} 8#«l6& Introduction xxv Part 1 Getting

More information

Avatier Identity Management Suite

Avatier Identity Management Suite Avatier Identity Management Suite Integrating Exchange 2007 With Identity Enforcer Version 9 2603 Camino Ramon Suite 110 San Ramon, CA 94583 Phone: 800-609-8610 925-217-5170 FAX: 925-217-0853 Email: support@avatier.com

More information

Professional SharePoint Server 2010 Administration

Professional SharePoint Server 2010 Administration Professional SharePoint Server 2010 Administration Target Audience IT Professionals, Administrators Course Description This accelerated 4-day course has been designed to teach experienced IT Professionals

More information

PowerShell for Exchange Admins

PowerShell for Exchange Admins PowerShell for Exchange Admins Get-Speaker FL Name : Kamal Abburi Title : Premier Field Engineer Expertise : Exchange Email : Kamal.Abburi@Microsoft.com Blog : mrproactive.com Note: Inspired by my fellow

More information

Course Syllabus. Implementing and Managing Windows Server 2008 Hyper-V. Key Data. Audience. At Course Completion. Prerequisites

Course Syllabus. Implementing and Managing Windows Server 2008 Hyper-V. Key Data. Audience. At Course Completion. Prerequisites Course Syllabus Implementing and Managing Windows Server 2008 Hyper-V Key Data Product #: 3961 Elements of this syllabus are subject to change. This three-day instructor-led course teaches students how

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

Intel vpro Technology Module for Microsoft* Windows PowerShell*

Intel vpro Technology Module for Microsoft* Windows PowerShell* Intel vpro Technology Module for Microsoft* Windows PowerShell* 1 Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL

More information

Configuring and Troubleshooting Internet Information Services in Windows Server 2008

Configuring and Troubleshooting Internet Information Services in Windows Server 2008 Course 6427A: Configuring and Troubleshooting Internet Information Services in Windows Server 2008 OVERVIEW About this Course In this 3-day instructor-led course, the students will learn to install, configure,

More information

DottsConnected SHAREPOINT 2010 ADMIN TRAINING. Exercise 1: Create Dedicated Service Accounts in Active Directory

DottsConnected SHAREPOINT 2010 ADMIN TRAINING. Exercise 1: Create Dedicated Service Accounts in Active Directory DottsConnected SHAREPOINT 2010 ADMIN TRAINING Module 1 - Getting started with SharePoint 2010 This introductory module introduces students to the fundamental terminology and architecture of SharePoint

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

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

Windows Server 2008 R2: What's New in Active Directory Windows Server 2008 R2: What's New in Active Directory Table of Contents Windows Server 2008 R2: What's New in Active Directory... 1 Exercise 1 Using the Active Directory Administration Center... 2 Exercise

More information

Microsoft Office Outlook 2013: Part 1

Microsoft Office Outlook 2013: Part 1 Microsoft Office Outlook 2013: Part 1 Course Specifications Course Length: 1 day Overview: Email has become one of the most widely used methods of communication, whether for personal or business communications.

More information

Using Management Shell Reports and Tracking User Access in the NetVanta UC Server

Using Management Shell Reports and Tracking User Access in the NetVanta UC Server 6UCSCG0004-29A September 2010 Configuration Guide Using Management Shell Reports and Tracking User Access in the NetVanta UC Server This configuration guide provides instructions for accessing the Microsoft

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

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

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 SSS6422 - Microsoft Windows Server 2008 Hyper-V Virtualization

Outline SSS6422 - Microsoft Windows Server 2008 Hyper-V Virtualization Outline SSS6422 - Microsoft Windows Server 2008 Hyper-V Virtualization Duration: Three consecutive Saturdays About this Course This instructor led course teaches students how to implement and manage Windows

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

Powershell Management for Defender

Powershell Management for Defender Powershell Management for Defender 2012 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under

More information

Jeffrey Snover Distinguished Engineer & Lead Architect Jason Helmick Senior Technologist, Concentrated Technology

Jeffrey Snover Distinguished Engineer & Lead Architect Jason Helmick Senior Technologist, Concentrated Technology Jeffrey Snover Distinguished Engineer & Lead Architect Jason Helmick Senior Technologist, Concentrated Technology Meet Jeffrey Snover @jsnover Distinguished Engineer & Lead Architect for Windows Server

More information

Microsoft Windows Server 2008: Configuring and Troubleshooting Internet Information Services IIS 7.0 6427

Microsoft Windows Server 2008: Configuring and Troubleshooting Internet Information Services IIS 7.0 6427 coursemonster.com/us Microsoft Windows Server 2008: Configuring and Troubleshooting Internet Information Services IIS 7.0 6427 View training dates» Audience This course introduces students to install,

More information

How to Prepare for the Upgrade to Microsoft Dynamics CRM 2013 (On-premises)

How to Prepare for the Upgrade to Microsoft Dynamics CRM 2013 (On-premises) How to Prepare for the Upgrade to Microsoft Dynamics CRM 2013 (On-premises) COMPANY: Microsoft Corporation RELEASED: September 2013 VERSION: 1.0 Copyright This document is provided "as-is". Information

More information

Microsoft Enterprise Search for IT Professionals Course 10802A; 3 Days, Instructor-led

Microsoft Enterprise Search for IT Professionals Course 10802A; 3 Days, Instructor-led Microsoft Enterprise Search for IT Professionals Course 10802A; 3 Days, Instructor-led Course Description This three day course prepares IT Professionals to administer enterprise search solutions using

More information

MOC 20342B: Advanced Solutions of Microsoft Exchange Server 2013

MOC 20342B: Advanced Solutions of Microsoft Exchange Server 2013 MOC 20342B: Advanced Solutions of Microsoft Exchange Server 2013 Course Overview This course provides students with the knowledge and skills to utilize advanced solutions in Microsoft Exchange Server 2013.

More information

SQL Server 2005 Express Installation guide

SQL Server 2005 Express Installation guide SQL Server 2005 Express Installation guide SQL Server 2005 Express Installation guide Page 2 Table of Content Table of Content... 2 Revision History... 2 Introduction... 3 Windows XP / Windows Vista /

More information

POWERSHELL FOR NEWBIES Getting started with PowerShell 4.0. Jeffery Hicks

POWERSHELL FOR NEWBIES Getting started with PowerShell 4.0. Jeffery Hicks POWERSHELL FOR NEWBIES Getting started with PowerShell 4.0 Jeffery Hicks Abstract This ebook is intended as a quick start guide for IT Professionals who want to learn about Windows PowerShell. The ebook

More information

Course Syllabus. Configuring and Troubleshooting Internet Information Services in Windows Server 2008. Key Data. Audience. At Course Completion

Course Syllabus. Configuring and Troubleshooting Internet Information Services in Windows Server 2008. Key Data. Audience. At Course Completion Key Data Product #: 3728 Course #: 6427A Number of Days: 3 Format: Instructor-Led Certification Exams: 70-643 This course syllabus should be used to determine whether the course is appropriate for the

More information

Workshop & Chalk n Talk Catalogue Services Premier Workshop & Chalk n Talk Catalogue

Workshop & Chalk n Talk Catalogue Services Premier Workshop & Chalk n Talk Catalogue Services Premier Workshop & Chalk n Talk Catalogue The Microsoft Services Premier Workshop & Chalk n Talk Catalogue 2011 is published by Microsoft Services in Ireland. Workshop Schedule Workshop Location

More information

Publish Acrolinx Terminology Changes via RSS

Publish Acrolinx Terminology Changes via RSS Publish Acrolinx Terminology Changes via RSS Only a limited number of people regularly access the Acrolinx Dashboard to monitor updates to terminology, but everybody uses an email program all the time.

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

PowerShell 3.0 Advanced Administration Handbook

PowerShell 3.0 Advanced Administration Handbook PowerShell 3.0 Advanced Administration Handbook Sherif Talaat Haijun Fu Chapter No. 6 "Managing Active Directory with PowerShell" In this package, you will find: A Biography of the authors of the book

More information

Using the Citrix Service Provider License Reporting Tool

Using the Citrix Service Provider License Reporting Tool TECHNIAL GUIDE Citrix Service Provider Using the Citrix Service Provider License Reporting Tool Version 3, Updated June 4, 2013 www.citrix.com Introduction Citrix Service Providers (CSP) need to generate

More information

The Win32 Network Management APIs

The Win32 Network Management APIs The Win32 Network Management APIs What do we have in this session? Intro Run-Time Requirements What's New in Network Management? Windows 7 Windows Server 2003 Windows XP Network Management Function Groups

More information

Troubleshoot Using Event Log Mining

Troubleshoot Using Event Log Mining Troubleshoot Using Event Log Mining 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, the ScriptLogic logo

More information

Things I wish I d known when I started using PowerShell

Things I wish I d known when I started using PowerShell PowerShell Day 1 Things I wish I d known when I started using PowerShell John D. Cook http://www.johndcook.com First released 9 April 2009, last updated 1 February 2010 Introduction This booklet captures

More information

Product Overview and Architecture

Product Overview and Architecture Product Overview and Architecture AppSphere AG Ottostraße 1 76275 Ettlingen Germany Contents 1 Preliminary Note... 3 2 Scripting with ScriptRunner... 4 3 ScriptRunner and PowerShell Remoting... 4 4 ScriptRunner

More information

Managing Local Administrator Passwords with LAPS 10/14/2015 PENN STATE SECURITY CONFERENCE

Managing Local Administrator Passwords with LAPS 10/14/2015 PENN STATE SECURITY CONFERENCE Managing Local Administrator Passwords with LAPS 2015 PENN STATE SECURITY CONFERENCE DAN BARR DRB45@PSU.EDU SYSTEMS ADMINISTRATOR, APPLIED RESEARCH LABORATORY The Shared Password Threat Shared passwords

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

FAQ. NetApp MAT4Shift. March 2015

FAQ. NetApp MAT4Shift. March 2015 i FAQ NetApp MAT4Shift March 2015 TABLE OF CONTENTS 1 General... 3 1.1 Solution Overview...3 What is NetApp MAT4Shift?... 3 What business needs does this solution address?... 3 What is the value of the

More information

Mobile Device Management in a BYOD World. Jay Cotton Microsoft PFE

Mobile Device Management in a BYOD World. Jay Cotton Microsoft PFE Mobile Device Management in a BYOD World Jay Cotton Microsoft PFE Mobile Device Management in a BYOD World Agenda It s a BYOD World What can I do to maintain control? How do these devices connect to Exchange?

More information

ActiveRoles Management Shell for Active Directory

ActiveRoles Management Shell for Active Directory ActiveRoles Management Shell for Active Directory Version 1.5 Administrator Guide 2010 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The

More information

Authoring for System Center 2012 Operations Manager

Authoring for System Center 2012 Operations Manager Authoring for System Center 2012 Operations Manager Microsoft Corporation Published: November 1, 2013 Authors Byron Ricks Applies To System Center 2012 Operations Manager System Center 2012 Service Pack

More information

Microsoft IT Camp Hands-On Lab

Microsoft IT Camp Hands-On Lab Microsoft IT Camp Hands-On Lab Windows Server 2012: High Availability File Server Lab version: 1.0.0 Last updated: 7/19/2012 CONTENTS OVERVIEW... 3 Objectives 3 Prerequisites 3 LAB DEPLOYMENT... 4 LAB...

More information

Setup Guide for AD FS 3.0 on the Apprenda Platform

Setup Guide for AD FS 3.0 on the Apprenda Platform Setup Guide for AD FS 3.0 on the Apprenda Platform Last Updated for Apprenda 6.0.3 The Apprenda Platform leverages Active Directory Federation Services (AD FS) to support identity federation. AD FS and

More information

Managing Your Microsoft Windows Server Fleet with AWS Directory Service. May 2015

Managing Your Microsoft Windows Server Fleet with AWS Directory Service. May 2015 Managing Your Microsoft Windows Server Fleet with AWS Directory Service May 2015 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved. Notices This document is provided for informational

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

Network device management solution

Network device management solution iw Management Console Network device management solution iw MANAGEMENT CONSOLE Scalability. Reliability. Real-time communications. Productivity. Network efficiency. You demand it from your ERP systems

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

50331D Windows 7, Enterprise Desktop Support Technician (Windows 10 Curriculum)

50331D Windows 7, Enterprise Desktop Support Technician (Windows 10 Curriculum) This course can be purchased by authorized Microsoft Learning Centers at the Courseware Marketplace web-site. Microsoft Certified Trainers (MCTs) can get a free copy at the same website. About the Course

More information

Who DIT It? Detecting and Mitigating Privilege Escalation Attacks on the Active Directory Data Store

Who DIT It? Detecting and Mitigating Privilege Escalation Attacks on the Active Directory Data Store Who DIT It? Detecting and Mitigating Privilege Escalation Attacks on the Active Directory Data Store Mike Middleton Justin Prosco Mandiant, A FireEye Company Mike Middleton Principal Consultant Joined

More information

6422: Implementing and Managing Windows Server 2008 Hyper-V (3 Days)

6422: Implementing and Managing Windows Server 2008 Hyper-V (3 Days) www.peaklearningllc.com 6422: Implementing and Managing Windows Server 2008 Hyper-V (3 Days) Introduction This three-day instructor-led course teaches students how to implement and manage Windows Server

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

Core Solutions of Microsoft Lync Server 2013

Core Solutions of Microsoft Lync Server 2013 About this Course Core Solutions of Microsoft Lync This instructor-led course teaches IT professionals how to plan, design, deploy, configure, and administer a Microsoft Lync solution. The course emphasizes

More information

A layman s guide to PowerShell 2.0 remoting. Ravikanth Chaganti

A layman s guide to PowerShell 2.0 remoting. Ravikanth Chaganti A layman s guide to PowerShell 2.0 remoting Ravikanth Chaganti Learn the basics of PowerShell 2.0 remoting, methods of remoting and how to use remoting to manage systems in a datacenter. A layman s guide

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

Core Solutions of Microsoft Lync Server 2013

Core Solutions of Microsoft Lync Server 2013 Course 20336A: Core Solutions of Microsoft Lync Server 2013 Length: Audience(s): 5 Days Level: 300 IT Professionals Technology: Microsoft Lync Server 2013 Type: Delivery Method: Course Instructor-led (classroom)

More information

STEALTHbits Technologies, Inc. StealthAUDIT v5.1 System Requirements and Installation Notes

STEALTHbits Technologies, Inc. StealthAUDIT v5.1 System Requirements and Installation Notes STEALTHbits Technologies, Inc. StealthAUDIT v5.1 System Requirements and Installation Notes June 2011 Table of Contents Overview... 3 Installation Overview... 3 Hosting System Requirements... 4 Recommended

More information

HIPAA Compliance Use Case

HIPAA Compliance Use Case Overview HIPAA Compliance helps ensure that all medical records, medical billing, and patient accounts meet certain consistent standards with regard to documentation, handling, and privacy. Current Situation

More information

New Features in Neuron ESB 2.6

New Features in Neuron ESB 2.6 New Features in Neuron ESB 2.6 This release significantly extends the Neuron ESB platform by introducing new capabilities that will allow businesses to more easily scale, develop, connect and operationally

More information

Virtualization Hyper-V host scale and scale-up workload support

Virtualization Hyper-V host scale and scale-up workload support Virtualization Hyper-V host scale and scale-up workload support System Host Virtual machine Resource Logical processors on hardware MAXIMUM NUMBER Windows 2008 R2 Windows Server 2012 64 320 5 Physical

More information

Sy Computing Services, Inc. TOP REASONS TO MOVE TO MICROSOFT EXCHANGE 2010. Prepared By:

Sy Computing Services, Inc. TOP REASONS TO MOVE TO MICROSOFT EXCHANGE 2010. Prepared By: TOP REASONS TO MOVE TO MICROSOFT EXCHANGE 2010 Prepared By: Sy Computing Services, Inc. What s new in Exchange Server 2010? Exchange Server 2010 contains a host of improvements and a lot of new features,

More information

Windows Server8 2008. R2 Hyper-V. Microsoft's Hypervisor. Insiders Guide to. Wiley Publishing, Inc. John Kelbley. Mike Sterling WILEY

Windows Server8 2008. R2 Hyper-V. Microsoft's Hypervisor. Insiders Guide to. Wiley Publishing, Inc. John Kelbley. Mike Sterling WILEY Windows Server8 2008 R2 Hyper-V Insiders Guide to Microsoft's Hypervisor John Kelbley Mike Sterling WILEY Wiley Publishing, Inc. Contents Introduction xix Chapter l Introducing Hyper-V l Scenarios for

More information

50573: Premier Support for Lync Partners Tier 2. Sobre o curso. Microsoft - Servidores

50573: Premier Support for Lync Partners Tier 2. Sobre o curso. Microsoft - Servidores 50573: Premier Support for Lync Partners Tier 2 Microsoft - Servidores Preço: sob consulta ( Os valores apresentados não incluem IVA. Oferta de IVA a particulares e estudantes ) Nível: Avançado Duração:

More information

MS-50292 - MCITP: Windows 7 Enterprise Desktop Support Technician Boot Camp

MS-50292 - MCITP: Windows 7 Enterprise Desktop Support Technician Boot Camp MS-50292 - MCITP: Windows 7 Enterprise Desktop Support Technician Boot Camp Table of Contents Introduction Audience At Completion Prerequisites Microsoft Certified Professional Exams Student Materials

More information

1 (11) Paperiton DMS Document Management System System Requirements Release: 2012/04 2012-04-16

1 (11) Paperiton DMS Document Management System System Requirements Release: 2012/04 2012-04-16 1 (11) Paperiton DMS Document Management System System Requirements Release: 2012/04 2012-04-16 2 (11) 1. This document describes the technical system requirements for Paperiton DMS Document Management

More information

DATA AND LOG FILES FOR CENTRAL MANAGEMENT STORE

DATA AND LOG FILES FOR CENTRAL MANAGEMENT STORE During the planning and deployment of Microsoft 2012 or Microsoft 2008 R2 SP1 for your Front End pool, an important consideration is the placement of data and log files onto physical hard disks for performance.

More information

Masterclass: Internet Information Services Management (IIS 8.5 / 8 / 7.5)

Masterclass: Internet Information Services Management (IIS 8.5 / 8 / 7.5) Masterclass: Internet Information Services Management (IIS 8.5 / 8 / 7.5) by Paula Januszkiewicz (3 days) Paula Januszkiewicz Paula Januszkiewicz is the world-known Security Expert. Loves to perform Penetration

More information

Dejan Foro dejan.foro@exchangemaster.net www.exchangemaster.net

Dejan Foro dejan.foro@exchangemaster.net www.exchangemaster.net What s New (beta 1) Dejan Foro dejan.foro@exchangemaster.net www.exchangemaster.net Speaker Principal Consultant @ British Telecom Global Professional Services 16 years in IT 11 x Microsoft certified (since1998)

More information

intertrax Suite resource MGR Web

intertrax Suite resource MGR Web intertrax Suite resource MGR Web Resource Management Installation Guide Version 4 2012 Copyright 2003-2012 by Salamander Technologies, Inc. Protected by US Patents 5,573,278; 5,596,652; 5,793,882; 6,761,312;

More information

SharePoint 2013 Syllabus

SharePoint 2013 Syllabus General Introduction What is IIS IIS Website & Web Application Steps to Create Multiple Website on Port 80 What is Application Pool What is AppDomain What is ISAPI Filter / Extension Web Garden & Web Farm

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

5/13/2009. Dejan Foro dejan.foro@exchangemaster.net. Speaker

5/13/2009. Dejan Foro dejan.foro@exchangemaster.net. Speaker Dejan Foro dejan.foro@exchangemaster.net Speaker 16years of years of experience with MS technologies 11years and 5generations of experience with Exchange (5.5, 2000, 2003, 2007, 2010) MCP, MCP+I, MCSE

More information

NEXT GENERATION ARCHIVE MIGRATION TOOLS

NEXT GENERATION ARCHIVE MIGRATION TOOLS NEXT GENERATION ARCHIVE MIGRATION TOOLS Cloud Ready, Scalable, & Highly Customizable - Migrate 6.0 Ensures Faster & Smarter Migrations EXECUTIVE SUMMARY Data migrations and the products used to perform

More information

LANDPARK NETWORK IP Landpark, comprehensive IT Asset Tracking and ITIL Help Desk solutions October 2016

LANDPARK NETWORK IP Landpark, comprehensive IT Asset Tracking and ITIL Help Desk solutions October 2016 LANDPARK NETWORK IP Landpark, comprehensive IT Asset Tracking and ITIL Help Desk solutions October 2016 LANDPARK NETWORK IP ALLOWS YOU TO EASILY INVENTORY YOUR PC THROUGH THE NETWORK Landpark NetworkIP

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, Configuring, and Administering Microsoft Lync Server 2010

Deploying, Configuring, and Administering Microsoft Lync Server 2010 Course 10533: Deploying, Configuring, and Administering Microsoft Lync Server 2010 Page 1 of 9 Deploying, Configuring, and Administering Microsoft Lync Server 2010 Course 10533: 4 days; Instructor-Led

More information

MONITORING WINDOWS WITH NETCRUNCH 7 P A G E 1

MONITORING WINDOWS WITH NETCRUNCH 7 P A G E 1 MONITORING WINDOWS WITH NETCRUNCH 7 P A G E 1 NetCrunch 7 can monitor Microsoft Windows systems without installing additional agents. However, due to tightened security rules, remote monitoring is possible

More information

ENTERPRISE VAULT 9.0 FEATURE BRIEFING

ENTERPRISE VAULT 9.0 FEATURE BRIEFING ENTERPRISE VAULT 9.0 FEATURE BRIEFING Enterprise Vault 9.0 Exchange Archiving Updates This document is for internal and partner use only. Do not distribute copies of this document to customers. If you

More information

Server Manager Performance Monitor. Server Manager Diagnostics Page. . Information. . Audit Success. . Audit Failure

Server Manager Performance Monitor. Server Manager Diagnostics Page. . Information. . Audit Success. . Audit Failure Server Manager Diagnostics Page 653. Information. Audit Success. Audit Failure The view shows the total number of events in the last hour, 24 hours, 7 days, and the total. Each of these nodes can be expanded

More information