5/13/2009. Dejan Foro Speaker

Size: px
Start display at page:

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

Transcription

1 Dejan Foro 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 NT40, MCSE+I, MCSE 2000, MCSE 2000:Messaging, MCSA 2003, MCSA 2003:Messaging, MCSE 2003, MCSE 2003:Messaging, MCT 1

2 Speaker Communities Exchange User Group Europe (founder) Swiss IT Pro UserGroup Rewards MCP Hall of Fame (1 of 6 worldwide) Microsoft MVP - Exchange (1 of 120 worldwide, the only 1 in Switzerland) MCP Success Stories Agenda Introduction Doing common tasks in Exchange Users related tasks Testing and troubleshooting Setting up your own PowerShell enviroment Additional resources 3rd party tools, web sites, communities, books, webcasts... Q&A 2

3 Presentation dowlnoad This presentation will be available for download from: Introduction How it used to be... Problemsof Scripting in Windows enviroment Manythingscould be done through command line VBScript programming knowledge required, knowledge of VB, WMI, WBEM, ADSI, object models security voulnearable 3

4 Introduction How it is today... Scriptingwith PowerShell in Exchange Command line interface developed first, than GUI EVERYTHING can be done via command line Exchange managment GUI actually executes PowerShell commands and shows you the syntax Single line commands replace pages of VB code Symple syntax Better security exectution of powershell scripts completely disabled by default, require scripts to be signed, etc. Example 4

5 Introduction Windows Powershell commands Get-Command Exchange Powershell additional 394 commands Get-Excommand Don t worry, you will be cool with approx. 20 Why are you going to love PowerShell Task example : Get a list of mailboxes and export into.csv file 5

6 Why you are going to love PowerShell VBScript Dim SWBemlocator Dim objwmiservice Dim colitems Dim objfso Dim objfile strtitle="mailbox Report" strcomputer = MyServer" UserName= "" Password = "" strlog="report.csv" Set objfso=createobject("scripting.filesystemobject") Set objfile=objfso.createtextfile(strlog,true) strquery="select * from Exchange_Mailbox" Set SWBemlocator = CreateObject("WbemScripting.SWbemLocator") Set objwmiservice= SWBemlocator.ConnectServer(strComputer,"\root\MicrosoftExchangeV2",UserName,Password) Set colitems = objwmiservice.execquery(strquery,,48) For Each objitem In colitems objfile.writelineobjitem.servername& "," &objitem.storagegroupname&_ "," & objitem.storename& "," & Chr(34) & objitem.mailboxdisplayname Next objfile.close Why you are going to love PowerShell PowerShell Get-mailbox export-csv c:\report.csv 6

7 ... And Action!!! Command Syntax New-Mailbox Get-Mailbox Set-Mailbox Mov box Remov box... 7

8 Getting help List of all available PowerShell commands Get-Command List of onlyexchange commands Get-Excommand Getting help about specific command Get-Help Get-Mailbox Get-Help Get-Mailbox detailed Get-Help Get-Mailbox full Getting info about users/mailboxes List of all mailboxes in organisation Get-Mailbox Get-Mailbox -ResultSize unlimited 8

9 Getting all available properties Get-Mailbox Format-List Get-Mailbox ResultSize 1 Format-List Getting just a list of properties names Get-Mailbox Get-Member -MemberType *Property Select-Object Name 9

10 Selecting & Sorting Get-Mailbox Select-Object -Property DisplayName, PrimarySMTPAddress Get-Mailbox Select-Object -Property DisplayName, PrimarySMTPAddress Sort-Object -Property DisplayName Examples List all mailboxes, sort by name, and export into a CSV file Get-Mailbox Sort-Object -Property Name Export-csv c:\mailboxes.csv Get a list of mailboxes from Active Directory OU named Users Get-Mailbox -OrganizationalUnit Users 10

11 Examples Count mailboxes in organisation (Get-mailbox).count Getting all properties for a specific user Get-Mailbox where {$_.DisplayName -eq "Dejan Foro"} format-list Who is thepostmaster? Get-Mailbox where {$_. Addresses - contains "postmaster@exchangemaster.net"} Examples Who is the user with GUID e65a6ff3-d a8e- 26a22315a686? Get-Mailbox where {$_.guid -eq "e65a6ff3-d a8e-26a22315a686"} Who has UM extention 200? Get-Mailbox where {$_.extensions - contains "200"} 11

12 Getting info about servers Give me a list of Exchange servers Get-Exchangeserver Get-ExchangeServer Select-Object -Property Name, Edition, AdminDisplayVersion, ServerRole format-list Examples Give me a list of mailbox servers Get-ExchangeServer where {$_.ServerRole -ilike "*Mailbox*"} Do we have servers running on trial version of Exchange and if yes when do they expire? Get-ExchangeServer where {$_.IsExchange2007TrialEdition -eq "True"} Select-Object -Property FQDN, RemainingTrialPeriod 12

13 Getting membership of a group Get-DistributionGroupMember -identity "Swiss IT Pro User Group Moderators" Managing the user lifecycle Creating users - Importing from a.csv file Modifing users move to another database Removing mailboxes and users 13

14 Importing users from a.csv file Task Import users from a file c:\users.csv For every user Create user account in AD of form First.Last@exchangemaster.net Put them in Organizational Unit VIP Create a mailbox in database Standard users Enter his first and last name Set all users with password Password123 and require the users to change the password at first logon Importing users from a.csv file Import-CSV c:\users.csv 14

15 Procesing values from a csv file Processing each row of data from.csv file Import-CSV c:\users.csv ForEach-Object { SOME ACTION} Command for creating Users New-Mailbox Get-Help New-Mailbox full Processing values from.csv file Referencing column names from the.csv file $_.columnname Converting Password text into secure string $Password = ConvertTo-SecureString - String "Password123" -asplaintext -force 15

16 Importing users from a.csv file Putted all together $Password = ConvertTo-SecureString -String "Password123" - asplaintext -force Import-Csv c:\users.csv ForEach-Object { $Name = $_.First + " " + $_.Last $UPN = $_.First + "." + $_.Last + "@exchangemaster.net" New-Mailbox -Name $Name -UserPrincipalName $UPN -Password $Password -OrganizationalUnit VIP -Database 'standard users' - FirstName $_.First -LastName $_Last -ResetPasswordOnNextLogon $True} Making changes to users Apply policies Assing to groups Enable or disable features Changing attributes Moving mailboxes... 16

17 Moving mailboxes Moving mailoboxes of users in OU VIP to a new database for VIPs Get-Mailbox -OrganizationalUnit "VIP" Mov box -TargetDatabase "VIP users" Moving mailboxes Checking for mailbox location after move Get-Mailbox Select-Object Name,Database 17

18 Removing mailboxes Check before deleting! Get-Mailbox -OrganizationalUnit VIP Remov box -WhatIf Remove them Get-Mailbox -OrganizationalUnit VIP Remov box Recommendation 3rd party snap-in for better manipulation of ADobjects Quest Software ActiveRoles Management Shell for Active Directoy 18

19 Managing queues Removing spam messages from the queue Remove-Message -Filter {FromAddress -like "*spammer.com* } -withndr $false Testing Get a list of test commands Get-Command test* 19

20 Testing Script example Report on Exchange database backups with Powershell nt&task=view&id=68&itemid=57 20

21 Setting up your Exchange PowerShell learning enviroment Prerequisites Supported OS Microsoft Windows Server 2003 R2, or Microsoft Windows Server 2003 with SP1 or SP2 Windows XP with Service Pack 2 Windows Vista Windows 2008 The Microsoft.NET Framework 2.0 ( ) Powershell Exchange 2007 Setting up your Exchange PowerShell learning enviroment Alternative if you don t want to bother: Microsoft Virtual PC Ready-made Microsoft Virtual Hard drive Exchange 2007 Exchange 2007 SP1 beta 21

22 PowerShell security and common problems for beginners How do I run PowerShell script? When you try to run a PowerShell script from the Run dialog box or by double clicking it, the script does not execute, but opens in Notepad. Answer: Invoke PowerShell.exe with full path to script PowerShell.exe c:\scripts\myscript.ps1 PowerShell security and common problems for beginners 22

23 PowerShell security and common problems for beginers Script blocked due to execution policy Policy Types Restricted, AllSigned RemoteSigned Unrestricted Commands Get-ExecutionPolicy Set-ExecutionPolicy Unrestricted Setting to Unrestricted is not recommended in production!!! PowerShell and Common problems for beginers Problem script will not execute if contains Exchange commands Solution -create a PowerShell profile which will load Exchange snap-ins for instructions see: FAQ error when executing PowerShell script which contains Exchange PowerShell commands 23

24 Communicating with user from the script Prompting user Write-Host -ForegroundColor red -BackgroundColor yellow "Formating your drive c:..." Write-Host -ForegroundColor blue -BackgroundColor green "Be cool I am just kidding" Getting user input Read-Host 3rd party editors Primal Script 2009 Autocomplete, Shows you syntax as you type List of switches Color coding Debugging Script signing with a one button click Comparing scripts Source control FTP transfer Code reusing Etc. 24

25 Primal Script Editors and enhancments Primal Script PowerShell IDE PowerShell Analyzer PowerShell Plus 25

26 I don t like comand line Alternatives to PowerShell Power GUI AD Infinitum Scriptlogic PowerGUI 26

27 PowerGUI PowerGUI 27

28 PowerGUI Additional Exchange resources Microsoft Exchange server web site Microsoft Exchange Team Blog (You had me at EHLO) Technet Microsoft Exchange Server TechCenter ult.mspx Virtual labs allab/default.mspx Webcasts /webcasts.mspx 28

29 PowerShell books Lite Frank Koch, Microsoft Switzerland German version English version PowerShell books medium PowerShell documentation Pack Manuals that comes with Powershell yid=b4720b00-9a66-430f-bd56- ec48bfca154f&displaylang=en 29

30 Powershell Books Advanced Converting VBScript Commands to Windows PowerShell Commands mspx 30

31 Webcasts in German Klickst Du noch oder skriptestdu schon? Frank RöderMVP Windows Server System - Directory Services Teil 1Windows PowerShell Einführung Teil 2 Server-Administration mitwindows PowerShell Teil 3 Exchange Server 2007 Administration mit Windows PowerShell Websites and blogs Windows PowerShell Home wershell/default.mspx Blog of Windows Powershellteam The Microsoft Exchange Team blog: Vivek Sharma s blog: The PowerShell Guy 31

32 Websites and blogs Glen Scales development blog Webcasts Introduction to Windows PowerShell Scripting in Exchange Server 2007 (Level 200) TechNet Webcast: 24 Hours of Exchange Server 2007 (Part 09 of 24): Using PowerShell for Exchange Management (Level 200) Microsoft Windows PowerShell Scripting for Microsoft Exchange Server 2007 (Level 300) 32

33 Community PowerShell Anwendergruppe Community PowerShell Live Get-Community Where {$_.passion -eq "PowerShell } 33

34 Community Swiss IT Pro user group Exchange User Group Europe Speakers wanted Get-speaker where {$._passion eq commnunity } Contact dejan.foro@eugeurope.org 34

35 Questions? Questions and Answers Q - Can powershell be used against Exchange 2003 machines? A yes, but not with all functionality and looks ugly 35

36 Questions and Answers Q CanPowerShellbeusedfrom.NETLanguageslike IronPhyton? A PowerShellis basedon.netframeworkandthereforecanbe embededinother.netlanguagesandvice versa. Hereare some examples: Using IronPythonfrom PowerShell Part 1 : Watch folder for changes without blocking Console Embedding PowerShell in IronPythonand vice versa -- two great tastes that taste great together Presentation dowlnoad This presentation will be available for download from: 36

37 Contact: LinkedIn: Xing (OpenBC): 37

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

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

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

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

Presented by: Robert Crane BE MBA MVP director@ciaops.com

Presented by: Robert Crane BE MBA MVP director@ciaops.com Presented by: Robert Crane BE MBA MVP director@ciaops.com Twitter to #ciaops My twitter handle = directorcia Email to director@ciaops.com Agenda PowerShell basics Advantages of PowerShell Configuring for

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

Windows PowerShell Fundamentals

Windows PowerShell Fundamentals 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

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

http://www.microsoft.com/en-us/download/details.aspx?id=38176 http://blogs.technet.com/b/scottschnoll/archive/2013/04/02/high-availabilitychanges-in-exchange-server-2013-cumulative-update-1.aspx http://blogs.technet.com/b/exchange/archive/2013/02/08/servicing-exchange-2013.aspx

More information

You Should Be Using PowerShell Aaron Kaiser Senior Technology Support Specialist Parkway School District

You Should Be Using PowerShell Aaron Kaiser Senior Technology Support Specialist Parkway School District You Should Be Using PowerShell Aaron Kaiser Senior Technology Support Specialist Parkway School District Why PowerShell? Most modern Microsoft GUI s are built upon PowerShell A number of third party applications

More information

WHITE PAPER BT Sync, the alternative for DirSync during Migrations

WHITE PAPER BT Sync, the alternative for DirSync during Migrations WHITE PAPER BT Sync, the alternative for DirSync during Migrations INTRODUCTION When you have a migration from Exchange on Premises, you definitely have an Active Directory set up. It is a logical decision

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

Release Note RM Unify CSV Extraction Tool

Release Note RM Unify CSV Extraction Tool RM Unify CSV Extraction Tool Contents Release Note RM Unify CSV Extraction Tool... 1 Contents... 1 About this Release Note... 1 About the RM Unify CSV Extraction Tool... 2 What it does... 2 Requirements...

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

AD SYNCHRONIZATION GUIDE

AD SYNCHRONIZATION GUIDE Built right. Just for you. AD SYNCHRONIZATION GUIDE greenhousedata.com Green House Data 340 Progress Circle Cheyenne, WY 82007 Contents OVERVIEW... 3 Prerequisites...3 ACTIVE DIRECTORY SYNCHRONIZATION

More information

Create user mailboxes

Create user mailboxes Create user mailboxes 5 out of 21 rated this helpful Applies to: Exchange Server 2013, Exchange Online Topic Last Modified: 2013-04-12 Mailboxes are the most common recipient type used by information workers

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

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

Dejan Foro dejan.foro@exchangemaster.net

Dejan Foro dejan.foro@exchangemaster.net Dejan Foro dejan.foro@exchangemaster.net Speaker 14 years of years of experience with MS technologies MCP, MCP+I, MCSE NT40, MCSE+I, MCSE 2000, MCSE 2000:Messaging, MCSA 2003, MCSA 2003:Messaging, MCSE

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

Departmental IT Staff (CatNet OU Admin) Guide to Exchange 2010

Departmental IT Staff (CatNet OU Admin) Guide to Exchange 2010 Departmental IT Staff (CatNet OU Admin) Guide to Exchange 2010 Submitted to: University of Arizona Prepared by: Table of Contents Active Directory... 4 Overview and Terminology... 4 CatNet Architecture...

More information

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

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

More information

Administrator s Guide

Administrator s Guide Attachment Save for Exchange Administrator s Guide document version 1.8 MAPILab, December 2015 Table of contents Intro... 3 1. Product Overview... 4 2. Product Architecture and Basic Concepts... 4 3. System

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

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

AddLocalUser AddLocalGroup AddLocalUserToLocalGroup AddDomainUserToLocalGroup AddDomainGroupToLocalGroup

AddLocalUser AddLocalGroup AddLocalUserToLocalGroup AddDomainUserToLocalGroup AddDomainGroupToLocalGroup Written by Rob Zylowski Originally developed for Unidesk and posted on www.unidesk.com Sr. Solutions Architect, Unidesk Corporation rzylowski@unidesk.com Managing User or Group Permissions on Virtual Desktops

More information

Z-Term V4 Administration Guide

Z-Term V4 Administration Guide Z-Term V4 Administration Guide The main purpose of Z-term is to allow for fast account termination process. Usually when an administrator terminates a departed user account, multiple consoles are used

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

Step-by-step installation guide for monitoring untrusted servers using Operations Manager ( Part 3 of 3)

Step-by-step installation guide for monitoring untrusted servers using Operations Manager ( Part 3 of 3) Step-by-step installation guide for monitoring untrusted servers using Operations Manager ( Part 3 of 3) Manual installation of agents and importing the SCOM certificate to the servers to be monitored:

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

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

Vtiger CRM Outlook Plugin Documentation

Vtiger CRM Outlook Plugin Documentation Vtiger CRM Outlook Plugin Documentation Outlook Plugin Version 1.0.04 Different Solutions GmbH support@different-solutions.com http://www.different-solutions.com Support Forum: http://forum.vtiger.de Date:

More information

SystemTools Software Inc. White Paper Series Hyena Installation Requirements

SystemTools Software Inc. White Paper Series Hyena Installation Requirements SystemTools Software Inc. White Paper Series Hyena Installation Requirements SystemTools Software, Inc. has created this white paper to cover all requirements to install and fully use all of the features

More information

TECHNICAL NOTE. The following information is provided as a service to our users, customers, and distributors.

TECHNICAL NOTE. The following information is provided as a service to our users, customers, and distributors. page 1 of 11 The following information is provided as a service to our users, customers, and distributors. ** If you are just beginning the process of installing PIPSPro 4.3.1 then please note these instructions

More information

How to move a SharePoint Server 2007 32-bit environment to a 64-bit environment on Windows Server 2008.

How to move a SharePoint Server 2007 32-bit environment to a 64-bit environment on Windows Server 2008. 1 How to move a SharePoint Server 2007 32-bit environment to a 64-bit environment on Windows Server 2008. By & Steve Smith, MVP SharePoint Server, MCT Penny Coventry, MVP SharePoint Server, MCT Combined

More information

Administrator s Guide

Administrator s Guide MAPILab Disclaimers for Exchange Administrator s Guide document version 1.8 MAPILab, December 2015 Table of contents Intro... 3 1. Product Overview... 4 2. Product Architecture and Basic Concepts... 4

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

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

There are only a couple of things that need to happen once you've ordered the product from our Service Manager.

There are only a couple of things that need to happen once you've ordered the product from our Service Manager. Introduction ExchangeDefender Compliance Archive provides secure, long term storage, recovery and ediscovery system that assures compliance with regulatory requirements established by IRS, HIPAA, SOX and

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

Access It! Universal Web Client Integration

Access It! Universal Web Client Integration Page 1 of 6 Last Updated: Friday, November 16, 2012 Access It! Universal Web Client Integration Overview This document outlines the steps needed to setup the Access It! Universal Web Client. The following

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

INSTALLATION GUIDE Version 1.2

INSTALLATION GUIDE Version 1.2 INSTALLATION GUIDE Version 1.2 1 Table of Contents OVERVIEW... 3 PREREQUISITES... 3 1. CREATE THE SMARTAFONE SERVICE ACCOUNT... 4 2. INSTALL SMARTAFONE... 5 3. SETTING PUBLIC FOLDERS PERMISSIONS... 11

More information

Quick Introduction... 3. System Requirements... 3. Main features... 3. Getting Started... 4. Connecting to Active Directory... 4

Quick Introduction... 3. System Requirements... 3. Main features... 3. Getting Started... 4. Connecting to Active Directory... 4 Users' Guide Thank you for evaluating and purchasing AD Bulk Users 4! This document contains information to help you get the most out of AD Bulk Users, importing and updating large numbers of Active Directory

More information

Z-Hire V4 Administration Guide

Z-Hire V4 Administration Guide Z-Hire V4 Administration Guide The main purpose of Z-hire is to allow for fast account deployment. Usually when an administrator provisions a new user account, multiple consoles are used to get the job

More information

FrontDesk. (Server Software Installation) Ver. 1.0.1. www.frontdeskhealth.com

FrontDesk. (Server Software Installation) Ver. 1.0.1. www.frontdeskhealth.com FrontDesk (Server Software Installation) Ver. 1.0.1 www.frontdeskhealth.com This document is the installation manual for installing the FrontDesk Server, Kiosk/Touch Screen, and License Management Tool

More information

Bitrix Site Manager ASP.NET. Installation Guide

Bitrix Site Manager ASP.NET. Installation Guide Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary

More information

GALSYNC V7.0. Manual. NETsec. NETsec GmbH & Co.KG Schillingsstrasse 117 DE - 52355 Düren. 01. June 2016

GALSYNC V7.0. Manual. NETsec. NETsec GmbH & Co.KG Schillingsstrasse 117 DE - 52355 Düren. 01. June 2016 GALSYNC V7.0 Manual NETsec 01. June 2016 NETsec GmbH & Co.KG Schillingsstrasse 117 DE - 52355 Düren Introduction... 9 What are the principles?... 9 Versions... 9 Compatibility... 11 Recommendations (Do

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

Mail Attender Version

Mail Attender Version Mail Attender Version Getting Started Guide Sherpa Software (800) 255-5155 www.sherpasoftware.com Page 1 Under the copyright laws, neither the documentation nor the software can be copied, photocopied,

More information

Web Mail Classic Web Mail

Web Mail Classic Web Mail April 14 Web Mail Classic Web Mail Version 2.2 Table of Contents 1 Technical Requirements... 4 2 Accessing your Web Mail... 4 3 Web Mail Features... 5 3.1 Home... 5 3.1.1 Mailbox Summary... 5 3.1.2 Announcements...

More information

NAS 253 Introduction to Backup Plan

NAS 253 Introduction to Backup Plan NAS 253 Introduction to Backup Plan Create backup jobs using Backup Plan in Windows A S U S T O R C O L L E G E COURSE OBJECTIVES Upon completion of this course you should be able to: 1. Create backup

More information

Exchange Mailbox Protection Whitepaper

Exchange Mailbox Protection Whitepaper Exchange Mailbox Protection Contents 1. Introduction... 2 Documentation... 2 Licensing... 2 Exchange add-on comparison... 2 Advantages and disadvantages of the different PST formats... 3 2. How Exchange

More information

Managing Recipients in Exchange 2007

Managing Recipients in Exchange 2007 Chapter 3 Managing Recipients in Exchange 2007 Solutions in this chapter: Managing Recipients Using the Exchange 2007 Management Console Managing Recipients in a Coexistence Environment Granting Access

More information

Installation Manual UC for Business Unified Messaging for Exchange 2010

Installation Manual UC for Business Unified Messaging for Exchange 2010 Installation Manual UC for Business Unified Messaging for Exchange 2010 NEC Corporation nec.com Unified Messaging for Exchange Installation Manual - Exchange 2010 Edition Table of Contents About this Manual...

More information

Enable Federated Agents in Chime for Lync

Enable Federated Agents in Chime for Lync Enable Federated Agents in Chime for Lync Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement

More information

SystemTools Software Inc. Hyena Installation Guide

SystemTools Software Inc. Hyena Installation Guide SystemTools Software Inc. Hyena Installation Guide SystemTools Software, Inc. has created this document to cover all requirements to install and fully use all of the features of SystemTools Hyena. Additional

More information

Pcounter Web Report 3.x Installation Guide - v2014-11-30. Pcounter Web Report Installation Guide Version 3.4

Pcounter Web Report 3.x Installation Guide - v2014-11-30. Pcounter Web Report Installation Guide Version 3.4 Pcounter Web Report 3.x Installation Guide - v2014-11-30 Pcounter Web Report Installation Guide Version 3.4 Table of Contents Table of Contents... 2 Installation Overview... 3 Installation Prerequisites

More information

Cyclope Internet Filtering Proxy

Cyclope Internet Filtering Proxy Cyclope Internet Filtering Proxy - Installation Guide - Cyclope-Series - 2010 - Table of contents 1. Overview - 3-2. Installation - 4-2.1. System requirements - 4-2.2. Cyclope Internet Filtering Proxy

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

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

ActiveRoles Management Shell for Active Directory

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

More information

NetWrix USB Blocker. Version 3.6 Administrator Guide

NetWrix USB Blocker. Version 3.6 Administrator Guide NetWrix USB Blocker Version 3.6 Administrator Guide Table of Contents 1. Introduction...3 1.1. What is NetWrix USB Blocker?...3 1.2. Product Architecture...3 2. Licensing...4 3. Operation Guide...5 3.1.

More information

How To Install An Archive Service On An Exchange Server (For A Free) With A Free Version Of Ios 2.5.1 (For Free) On A Windows Xp Or Windows 7 (For Windows) (For An Ubuntu) (

How To Install An Archive Service On An Exchange Server (For A Free) With A Free Version Of Ios 2.5.1 (For Free) On A Windows Xp Or Windows 7 (For Windows) (For An Ubuntu) ( Installing Exchange Server Archiver Exchange Server Archiver - 3.0 Installing Exchange Server Archiver You are recommended to read the Exchange Server Archiver Technical Overview for a description of the

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

MSSQL quick start guide

MSSQL quick start guide C u s t o m e r S u p p o r t MSSQL quick start guide This guide will help you: Add a MS SQL database to your account. Find your database. Add additional users. Set your user permissions Upload your database

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

Dell One Identity Manager 7.0. Administration Guide for Connecting to Microsoft Exchange

Dell One Identity Manager 7.0. Administration Guide for Connecting to Microsoft Exchange Dell One Identity Manager 7.0 Administration Guide for Connecting to Microsoft 2015 Dell Inc. All rights reserved. This product is protected by U.S. and international copyright and intellectual property

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

User Management Tool 1.6

User Management Tool 1.6 User Management Tool 1.6 2014-12-08 23:32:48 UTC 2014 Citrix Systems, Inc. All rights reserved. Terms of Use Trademarks Privacy Statement Contents User Management Tool 1.6... 3 ShareFile User Management

More information

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

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

More information

https://mcp.microsoft.com/authenticate/mcpcredentials.aspx

https://mcp.microsoft.com/authenticate/mcpcredentials.aspx M r ic o o s f t e C t r if ic t a io n D I : 1 0 0 5 8 3 6 Seite 1 von 12 Microsoft Certified Professional Transcript Last Activity Recorded : March 15, 2011 UDO HEUSCHMANN ACTIVE MICROSOFT CERTIFICATIONS:

More information

How to monitor AD security with MOM

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

More information

New-ADUser Name SamAccountName -AccountPassword (Read-Host AsSecurestring AccountPassword ) Enabled $true ChangePasswordAtLogon $true New-ADUser Name Amy Strande

More information

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve.

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve. Quick Start Guide DocuSign Retrieve 3.2.2 Published April 2015 Overview DocuSign Retrieve is a windows-based tool that "retrieves" envelopes, documents, and data from DocuSign for use in external systems.

More information

Exchange 2007 Role Build-In protection ( Overview) Anywhere Access Unified Messaging Console Powershell for Exchange Outlook 2007 and Exchange 2007 :

Exchange 2007 Role Build-In protection ( Overview) Anywhere Access Unified Messaging Console Powershell for Exchange Outlook 2007 and Exchange 2007 : Exchange 2007 Role Build-In protection ( Overview) Anywhere Access Unified Messaging Console Powershell for Exchange Outlook 2007 and Exchange 2007 : New Collaboration View CAS HUB Mailbox Edge UM Client

More information

Manual POLICY PATROL SIGNATURES FOR OUTLOOK, GOOGLE APPS & OFFICE 365

Manual POLICY PATROL SIGNATURES FOR OUTLOOK, GOOGLE APPS & OFFICE 365 Manual POLICY PATROL SIGNATURES FOR OUTLOOK, GOOGLE APPS & OFFICE 365 MANUAL Policy Patrol Signatures This manual, and the software described in this manual, are copyrighted. No part of this manual or

More information

XEROX, The Document Company, the stylized X, and the identifying product names and numbers herein are trademarks of XEROX CORPORATION.

XEROX, The Document Company, the stylized X, and the identifying product names and numbers herein are trademarks of XEROX CORPORATION. Version 9.0 Scan to PC Desktop v9.0 Network Installation Guide Document version 4.0 This document provides instructions for installing the software associated with Scan to PC Desktop in a network environment.

More information

Legal Notes. Regarding Trademarks. 2012 KYOCERA Document Solutions Inc.

Legal Notes. Regarding Trademarks. 2012 KYOCERA Document Solutions Inc. Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for any problems arising from

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

Managing an Active Directory Infrastructure O BJECTIVES

Managing an Active Directory Infrastructure O BJECTIVES O BJECTIVES This chapter covers the following Microsoft-specified objectives for the Planning and Implementing an Active Directory Infrastructure and Managing and Maintaining an Active Directory Infrastructure

More information

Pronestor Room & Catering

Pronestor Room & Catering Pronestor Room & Catering Module 2 Installation of additional modules Page 2.0 2.9 User import (AD integration) Page 2.1 2.4 o Service Accounts (hosted and on-premises) o Active Directory Structure o Installation

More information

Module 4: Implementing User, Group, and Computer Accounts

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

More information

CONFIGURING MICROSOFT SQL SERVER REPORTING SERVICES

CONFIGURING MICROSOFT SQL SERVER REPORTING SERVICES CONFIGURING MICROSOFT SQL SERVER REPORTING SERVICES TECHNICAL ARTICLE November/2011. Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment

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

Magento Extension Point of Sales User Manual Version 1.0

Magento Extension Point of Sales User Manual Version 1.0 Magento Extension Point of Sales Version 1.0 1. Overview... 2 2. Integration... 2 3. General Settings... 3 3.1 Point of sales Settings... 3 3.2 Magento Client Computer Settings... 3 4. POS settings...

More information

HELP DOCUMENTATION UMRA USER GUIDE

HELP DOCUMENTATION UMRA USER GUIDE HELP DOCUMENTATION UMRA USER GUIDE Copyright 2013, Tools4Ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any form or by any means without the

More information

TROUBLESHOOTING GUIDE

TROUBLESHOOTING GUIDE Lepide Software LepideAuditor Suite TROUBLESHOOTING GUIDE This document explains the troubleshooting of the common issues that may appear while using LepideAuditor Suite. Copyright LepideAuditor Suite,

More information

Downloading and Installing Core FTP

Downloading and Installing Core FTP What is FTP? To transfer the fi les from your computer to a web server, a special protocol (transfer method) is used: FTP - the File Transfer Protocol. This protocol was designed to be able to handle big

More information

How to Configure a Stress Test Project for Microsoft Office SharePoint Server 2007 using Visual Studio Team Suite 2008.

How to Configure a Stress Test Project for Microsoft Office SharePoint Server 2007 using Visual Studio Team Suite 2008. How to Configure a Stress Test Project for Microsoft Office SharePoint Server 2007 using Visual Studio Team Suite 2008. 1 By Steve Smith, MVP SharePoint Server, MCT And Penny Coventry, MVP SharePoint Server,

More information

PowerSearch for MS CRM 2011

PowerSearch for MS CRM 2011 PowerSearch for MS CRM 2011 Version 5.0 Installation Guide (How to install/uninstall PowerSearch for MS CRM 2011) The content of this document is subject to change without notice. Microsoft and Microsoft

More information

Item Audit Log 2.0 User Guide

Item Audit Log 2.0 User Guide Item Audit Log 2.0 User Guide Item Audit Log 2.0 User Guide Page 1 Copyright Copyright 2008-2013 BoostSolutions Co., Ltd. All rights reserved. All materials contained in this publication are protected

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

How To Install Outlook Addin On A 32 Bit Computer

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

More information

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

Installing Microsoft Outlook on a Macintosh. This document explains how to download, install and configure Microsoft Outlook on a Macintosh.

Installing Microsoft Outlook on a Macintosh. This document explains how to download, install and configure Microsoft Outlook on a Macintosh. Reference : USER184 Issue date : December 2002 Revision date : September 2007 Classification : Software Originator : Hugh Burt REVISED DOCUMENT Installing Microsoft Outlook on a Macintosh This document

More information

vtcommander Installing and Starting vtcommander

vtcommander Installing and Starting vtcommander vtcommander vtcommander provides a local graphical user interface (GUI) to manage Hyper-V R2 server. It supports Hyper-V technology on full and core installations of Windows Server 2008 R2 as well as on

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

Outlook Anywhere Local Client Setup Instructions

Outlook Anywhere Local Client Setup Instructions Outlook Anywhere Local Client Setup Instructions Before you start please note: The minimum system requirements are as per below. Please do not underestimate the importance of these minimum requirements.

More information

How To Install Ctera Agent On A Pc Or Macbook With Acedo (Windows) On A Macbook Or Macintosh (Windows Xp) On An Ubuntu 7.5.2 (Windows 7) On Pc Or Ipad

How To Install Ctera Agent On A Pc Or Macbook With Acedo (Windows) On A Macbook Or Macintosh (Windows Xp) On An Ubuntu 7.5.2 (Windows 7) On Pc Or Ipad Deploying CTERA Agent via Microsoft Active Directory and Single Sign On Cloud Attached Storage September 2015 Version 5.0 Copyright 2009-2015 CTERA Networks Ltd. All rights reserved. No part of this document

More information