ICT dag 03/12 Managing Systems with PowerShell. Bart Portier docent TW KHK Geel Microsoft Certified Trainer

Size: px
Start display at page:

Download "ICT dag 03/12 Managing Systems with PowerShell. Bart Portier docent TW KHK Geel Microsoft Certified Trainer"

Transcription

1 ICT dag 03/12 Managing Systems with PowerShell Bart Portier docent TW KHK Geel Microsoft Certified Trainer

2 What is PowerShell? Comparing applications and scripts in Vista Learning PowerShell Automating with PowerShell Exercise : filesystem management with PowerShell

3 Deel 1 : UAC en soorten scripts

4 Scripting applications vista : stand van zaken Vergelijking VBS BAT PS1 User Account control : verband tussen UAC en scripts

5 Wat is UAC? User Account Control

6 Meer controle, zonder Administrator te zijn!

7

8 Script alternatieven.bat.vbs.ps1 Works? Limited Limited After install of powershell (hotfix) Script elevation? Usage? Remote? No, unless powertoys Logon script Startup script No, unless powertoys Logon script Startup script Yes and no Batch management

9 issues Script issues Startup script om numlock aan te zetten doet het niet Vbs startup scripts worden via policies vaak via vertraging uitgevoerd, en hebben een 2de reboot nodig Policy and profile issues Logonscripts werkten wel en niet tussen de verschillende beta versies van Vista Script om locale user profiles te verwijderen worden niet meer gesupporteerd. (demo) Moveuser.exe not supported ( b/930955/en-us) GPO en beperkte backward compatibility

10 Demo: moveuser.exe Install hotfix (KB) After you install the update that is described in this article, the User Profile Windows Management Instrumentation (WMI) provider (Win32_UserProfile) is added in Windows Vista. This User Profile WMI provider replaces Moveuser.exe in Windows Vista. The new User Profile WMI provider can be used to map an existing local account profile to a new domain based account. It can also be used to map an existing domain-based account profile to a new domain-based account profile.

11 Vervolg: moveuser.exe Show profiles in profile directory (all folder options switched to full visibility) Run script : listing profiles Run script : deleting profiles

12 Locale profielen Traditionele aanpak Resource kit tool: moveuser.exe Deletes caches user profiles during boot vista WMI addition: win32_userprofile Zie : wmicodecreator (demo)

13 Elevating scripts there is the Elevate Command PowerToy which can get the job done. It was written by Michael Murgolo, a consultant with Microsoft Consulting Services The tool is discussed here: 007/06/UtilitySpotlight/default.aspx. And is available for download here: Vb : elevate notepad c:\windows\win.ini Vb : elevate wscript C:\windows\system32\ slmgr.vbs dli

14 Powertoys : elevate scripts Vb : elevate.cmd wscript c:\users\admin\deletevistaprofile.vbs

15 Voetnoot: slmgr.vbs slmgr.vbs [MachineName [User Password]] [<Option>] MachineName: Name of remote machine (default is local machine) User: Account with required privilege on remote machine Password: password for the previous account Global Options -ipk <product key> Install product key (replaces existing key) -upk Uninstall product key -ato Activate Windows -dli [Activation ID All] Display license information (default: current license) -dlv [Activation ID All] Display detailed license information (default: current license) -xpr Expiration date for current license state

16 Profile errors

17 Deel 2 : Wat is powershell?

18 Windows PowerShell New command-line shell and scripting language interactive (vb. Tab completion) programmatic (vb. Verb-noun construct) production oriented (vb. Exchange 2007) Allows access to data stores as easy to access as filesystem

19 The Difference is OBJECTS! Get-Process Where { $_.handles gt 500 } Sort handles Format-Table Common Windows PowerShell Parser Format Cmdlet Sort Cmdlet Where Cmdlet Get-Process Cmdlet Windows PowerShell Pipeline Processor

20 Mailbox Statistics Database Mgmt Recipient Mgmt Exchange 2003 (VBScript) Set listexchange_mailboxs = GetObject("winmgmts:{impersonationLevel=impersonate}!\\COMPUTERNAME\ROOT\MicrosoftExchangeV2"). InstancesOf("Exchange_Mailbox") For Each objexchange_mailbox in listexchange_mailboxs WScript.echo "AssocContentCount = + objexchange_mailbox.assoccontentcount WScript.echo " DateDiscoveredAbsentInDS = + objexchange_mailbox.datediscoveredabsentinds WScript.echo " DeletedMessageSizeExtended = + objexchange_mailbox. DeletedMessageSizeExtended WScript.echo " LastLoggedOnUserAccount = + objexchange_mailbox. LastLoggedOnUserAccount WScript.echo " LastLogoffTime = + objexchange_mailbox. LastLogoffTime WScript.echo " LastLogonTime = + objexchange_mailbox. LastLogonTime WScript.echo " LegacyDN = + objexchange_mailbox. LegacyDN WScript.echo " MailboxDisplayName = + objexchange_mailbox. MailboxDisplayName WScript.echo " MailboxGUID = + objexchange_mailbox. MailboxGUID WScript.echo " ServerName = + objexchange_mailbox. ServerName WScript.echo " Size = + objexchange_mailbox. Size WScript.echo " StorageGroupName = + objexchange_mailbox. StorageGroupName WScript.echo " StorageLimitInfo = + objexchange_mailbox. StorageLimitInfo WScript.echo " StoreName = + objexchange_mailbox. StoreName WScript.echo " TotalItems = + objexchange_mailbox. TotalItems Next Dim StorGroup as New CDOEXM.StorageGroup StorGroup.DataSource.Open "LDAP://" + DCServer + "/ CN=First Storage Group,CN=InformationStore,CN=" + Server + ",CN=Servers,CN=First Administrative Group, CN=Administrative Groups,CN=First Organization, CN=Microsoft Exchange,CN=Services, CN=Configuration," + DomainName StorGroup.MoveLogFiles("C:\newlogPath", 0) Dim objmailbox As CDOEXM.IMailboxStore Set objmailbox = GetObject("LDAP://" + DCServer + "CN=FOO,CN=users," + DomainName) objmailbox.creat box "LDAP://" + DCServer + "/CN=Private MDB,CN=First Storage Group,CN=InformationStore,CN=" + Server + ",CN=Servers,CN=First Administrative Group, CN=Administrative Groups,CN=First Organization, CN=Microsoft Exchange,CN=Services, CN=Configuration," + DomainName E12 (Monad Script) get-mailboxstatistics server $servername move-storagegrouppath -identity First Storage Group log "C:\newlogPath enabl box -identity domain\foo database First Storage Group\Private MDB

21 Install powershell, run basic commands DEMO: SHORT INTRODUCTION TO POWERSHELL

22 Exploring commands GET commands get-command get-* Get-command get-* more Get-command group-object verb Get-command group-object noun Get-command group-object noun sort-object name GET = verb, NOUN = command SET = verb, NOUN =. Get-command *-process Get-command *-service Get-help get-process (or) get-process -? Get-help get-process more (or) get-process -? more Get-date >c:\write.txt

23 Pipeline commands GET-process svchost sort-object processname format-table processname, handlecount Get-process Sort-object Format-table

24 cmdlets V 1.0 : more than 100 cmdlets. Let s count them: $a = get-command $a.count $(get-command).count Get-command group-object noun Get-command group-object noun sort-object name

25 Writing cmdlets or scripts GET commands $a = get-process $b = get-date $c = process count: + $a.count + at + $b.tostring() Write-host $c Set-content c:\store.txt $c Get-content c:\content.txt You can run this in the power shell You can copy the code to notepad and save it as script1.ps1 How to run the script? Go to the folder with the script Type :.\script1.ps1 Or from start > run : type : powershell.exe c:\folder\script1.ps1 Watch out! Set-executionPolicy must allow execution of scripts Tip: start-transcript, stop-transcript

26 Ps1 scripts starten Powershell.exe c:\path\script.ps1 Error: PS C:\Users\leonard> Set-ExecutionPolicy unrestricted Set-ExecutionPolicy : Access to the registry key 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\ 1\ShellIds\Microsoft.PowerShell' is denied. At line:1 char:20 + Set-ExecutionPolicy <<<< unrestricted Oorzaak: UAC + ExecutionPolicy Set-executionPolicy

27 Werkwijze : set-executionpolicy executionpolicy unrestricted Create shortcut to : powershell.exe This behavior is by design. As a policy, ExecutionPolicy is designed so that only administrators can modify it. PowerShell users on XP and Windows Server 2003 likely didn't see this as most users login with administrative privileges. In Vista, this changed with the advent of User Account Control. Unless explictly requested, processes started by an Administrator account will run as a standard user and not Administrator. You can do this most easily by right-clicking the PowerShell icon in the Start Menu and selecting "Run as Administrator".

28 Deel 3 :PowerShell and.net Using.net from the powershell Extending PS with.net classes Extending PS with WMI

29 example $now = [system.datetime]::get_now() $now.year $now.dayofweek $now get-member more Compare to what you do in WebDeveloper and Vbscript (WSH).net Imports WSH - createobject

30 Extending with WMI Get-wmiObject Get-WmiObject Namespace root\cimv2 class win32_currenttime Oefening: get-wmiobject win32_userprofile Get-wmiObject win32_userprofile get-member Look for the Delete-method

31 whatif Remove-item c:\deleteme\t*.txt -whatif

32 Filesystem example Get-childItem Path c:\windows\system32 filter *.dll Where-object {$_.creationtime.year eq 2006 } Sort-object creationtime Format-Table name, creationtime

33 COM scripting $ie = new-object comobject InternetExplorer.Application $ie.visible = $true $ie.navigate2(

34 Filter example Get-service where-object { $_.status eq running and $._name match sql } Other operators -lt (less than) -gt (greater than) -le (less and equal) -ne (not equal) - contains, -notcontains

35 Get-help get-service parameter *

36 Oefening : stop de telnet service Wat wil je doen? Installeer Telnet server en zet startup type op manual Roep lijst services op Roep info op over commando s met service in naam Roep info over stopservice op Stop de service. Commands??????

37 Oefening : stop de telnet service Wat wil je doen? Installeer Telnet server en zet startup type op manual Roep lijst services op Roep info op over commando s met service in naam Roep info over stopservice op Stop de service. Commands? Get-service Get-command *service Get-help stop-service parameter * Stop-service tlnt*

38 compare cmd Dir *.txt cmdlet Get-childItem *.txt Provider: alias Set-location alias: Get-childitem d* Get-childitem l* Provider: HKCU Set-location HKCU: Get-childitem Get-childitem l* Return: Set-location path c:\

39 Transformation and Output Commands Format -Custom -List -Table -Wide Out -File -Host -Printer -String Export/Import -CliXML -CSV ConvertTo -HTML Functions Convert objects into formatting records Convert formatting records into output-specific directives. Converts objects into and out of file formats Converts object into other objects

40 examples Get-service format-table name, status Get-service select-object name, status group-object status Get-service where-object {$_.status eq running } Gsv? {$_.status eq running }

41 Output en input DEMO: TRANSFORMATION AND OUTPUT UTILITIES

42 POWERSHELL V2 COMMUNITY TECHNOLOGY PREVIEW (CTP)

43 Availability /Applicability The PowerShell V2 CTP is not for everyone Read this PowerShell Team blog entry:

44 PowerShell V2 Themes Universal Code Execution Model GUI over PowerShell Production Scripting Community Feedback

45 PowerShell V2 Themes Commands, expressions and ScriptBlocks can be run in the foreground or background on one or more machines over a LAN or a WAN in unrestricted or restricted environments using short or long connections using impersonation or supplied credentials initiated by user input or by events Universal Code Execution Model

46 Features Remoting Mobile Object Model Background Jobs Restricted Runspaces Eventing (coming soon) Universal Code Execution Model

47 Features New hosting APIs Runspace pooling GUI over PowerShell

48 Features Graphical PowerShell Script Cmdlets Script Internationalization/Data Language Debugging Packages and modules (coming soon) Production Scripting

49 Features Language enhancements Improved adapters New/improved cmdlets Community Feedback

50 Call To Action Download PowerShell CTP On non-production systems Kick the tires and let us know what we got right/wrong Let us know about any incompatibilities with V1

51 Invest and learn how to: Learn and leverage others work Discover the system Leverage utilities Formalize your work Methods apply to V1 and V2

52 In the box documents Release Notes Getting Started, Users Guide, Quick Reference Guide Help Discovery utilities Books Community Practice ad hoc development

53 Utilities - Discovery Command Get-Help Get-Command Get-Member Get-PSDrive Function Help about PowerShell commands and topics Get information about anything that can be invoked Show what can be done with an object Shows what object stores are available

54 Get-command DEMO: DISCOVERY UTILITIES

55 Utilities Object Manipulation Command Compare Group Measure Select Sort Tee Where Action Compare 2 sets of objects Split a set of objects into groups Measure some property of a set of objects Select a set of properties from a set of objects Sort objects Make a copy of a set of objects Select a subset of objects

56 Set versus get DEMO: OBJECT MANIPULATION UTILITIES

57 Newsgroup: Microsoft.Public.Windows.PowerShell Team blog: PowerShellCommunity.Org: Channel 9 Wiki Script Center: CodePlex: Many excellent books Manning Press book by PowerShell Dev Lead Bruce Payette: PowerShell in Action O Reilly book by PowerShell Dev Lee Holmes Windows PowerShell Cookbook

58 Complete an evaluation

59 filesystem Vb npsh/payette2.mspx

60 tools powershellide (

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Microsoft. Exchange Server 2007. Základní přehled. Miroslav Knotek Microsoft MVP. IT Senior Consultant KPCS CZ, s.r.o. mirek@knotek.net www.kpcs.

Microsoft. Exchange Server 2007. Základní přehled. Miroslav Knotek Microsoft MVP. IT Senior Consultant KPCS CZ, s.r.o. mirek@knotek.net www.kpcs. Microsoft Exchange Server 2007 Základní přehled Miroslav Knotek Microsoft MVP IT Senior Consultant KPCS CZ, s.r.o. mirek@knotek.net www.kpcs.cz Agenda Server Roles Installation Management Server Changes

More information

HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION

HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION HOW TO SILENTLY INSTALL CLOUD LINK REMOTELY WITHOUT SUPERVISION Version 1.1 / Last updated November 2012 INTRODUCTION The Cloud Link for Windows client software is packaged as an MSI (Microsoft Installer)

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

How To Use Powerpoint In Windows Powerpoint 2.2.2 (Windows Powerpoint)

How To Use Powerpoint In Windows Powerpoint 2.2.2 (Windows Powerpoint) To learn more about this book, visit Microsoft Learning at http://www.microsoft.com/mspress/books/9541.aspx Table of Contents Acknowledgments............................................................

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

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

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved.

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved. Version 3.2 User Guide Copyright 2002-2009 Snow Software AB. All rights reserved. This manual and computer program is protected by copyright law and international treaties. Unauthorized reproduction or

More information

PROJECTIONS SUITE. Database Setup Utility (and Prerequisites) Installation and General Instructions. v0.9 draft prepared by David Weinstein

PROJECTIONS SUITE. Database Setup Utility (and Prerequisites) Installation and General Instructions. v0.9 draft prepared by David Weinstein PROJECTIONS SUITE Database Setup Utility (and Prerequisites) Installation and General Instructions v0.9 draft prepared by David Weinstein Introduction These are the instructions for installing, updating,

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

Microsoft Corporation. Status: Preliminary documentation

Microsoft Corporation. Status: Preliminary documentation Microsoft Corporation Status: Preliminary documentation Beta content: This guide is currently in beta form. The AppLocker team greatly appreciates you reviewing the document and looks forward to receiving

More information

Pearl Echo Installation Checklist

Pearl Echo Installation Checklist Pearl Echo Installation Checklist Use this checklist to enter critical installation and setup information that will be required to install Pearl Echo in your network. For detailed deployment instructions

More information

Hands-On Lab. Lab 01: Getting Started with SharePoint 2010. Lab version: 1.0.0 Last updated: 2/23/2011

Hands-On Lab. Lab 01: Getting Started with SharePoint 2010. Lab version: 1.0.0 Last updated: 2/23/2011 Hands-On Lab Lab 01: Getting Started with SharePoint 2010 Lab version: 1.0.0 Last updated: 2/23/2011 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING A SITE COLLECTION IN SHAREPOINT CENTRAL ADMINISTRATION...

More information

Security Explorer 9.5. User Guide

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

More information

Secret Server Installation Windows 8 / 8.1 and Windows Server 2012 / R2

Secret Server Installation Windows 8 / 8.1 and Windows Server 2012 / R2 Secret Server Installation Windows 8 / 8.1 and Windows Server 2012 / R2 Table of Contents Table of Contents... 1 I. Introduction... 3 A. ASP.NET Website... 3 B. SQL Server Database... 3 C. Administrative

More information

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008.

To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server 2008. Znode Multifront - Installation Guide Version 6.2 1 System Requirements To install Multifront you need to have familiarity with Internet Information Services (IIS), Microsoft.NET Framework and SQL Server

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

ACTIVE DIRECTORY DEPLOYMENT

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

More information

ILTA HANDS ON Securing Windows 7

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

More information

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

Introduction to PowerShell by Guy Thomas

Introduction to PowerShell by Guy Thomas Introduction to PowerShell by Guy Thomas Chapter Headings: Windows PowerShell Our Mission... 3 Windows PowerShell Introduction... 4 GS 1: Download your copy of PowerShell... 9 GS 2: Three Ways to Execute

More information

Installation Manual v2.0.0

Installation Manual v2.0.0 Installation Manual v2.0.0 Contents ResponseLogic Install Guide v2.0.0 (Command Prompt Install)... 3 Requirements... 4 Installation Checklist:... 4 1. Download and Unzip files.... 4 2. Confirm you have

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

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

TestElite - Troubleshooting

TestElite - Troubleshooting TestElite - Troubleshooting Revision Sheet 1.0 Balázs Mayer 2014 TestElite. All Rights Reserved. Troubleshooting This document is a collection of the frequented asked questions (FAQ) for solving the general,

More information

Universal Management Service 2015

Universal Management Service 2015 Universal Management Service 2015 UMS 2015 Help All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,

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

Kaseya 2. User Guide. Version 1.1

Kaseya 2. User Guide. Version 1.1 Kaseya 2 Directory Services User Guide Version 1.1 September 10, 2011 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations.

More information

Elevation requirements... 18

Elevation requirements... 18 Hyper-V Remote Management Configuration Script Contents Hyper-V Remote Management Configuration Script... 1 Introduction... 3 License... 4 Quick start guide... 4 About... 5 Installation & Removal... 5

More information

Contents 1. Introduction 2. Security Considerations 3. Installation 4. Configuration 5. Uninstallation 6. Automated Bulk Enrollment 7.

Contents 1. Introduction 2. Security Considerations 3. Installation 4. Configuration 5. Uninstallation 6. Automated Bulk Enrollment 7. Contents 1. Introduction 2. Security Considerations 3. Installation 4. Configuration 5. Uninstallation 6. Automated Bulk Enrollment 7. Troubleshooting Introduction Adaxes Self-Service Client provides secure

More information

COMMAND-LINE AND AUTOMATION TOOLS

COMMAND-LINE AND AUTOMATION TOOLS 29 COMMAND-LINE AND AUTOMATION TOOLS Command-Line Tools Despite the ease of use of the Windows graphical user interface, the command-line interface remains a useful way to perform many maintenance, configuration,

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

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

SQL Server Automated Administration

SQL Server Automated Administration SQL Server Automated Administration To automate administration: Establish the administrative responsibilities or server events that occur regularly and can be administered programmatically. Define a set

More information

TMA Management Suite. For EAD and TDM products. ABOUT OneAccess. Value-Adding Software Licenses TMA

TMA Management Suite. For EAD and TDM products. ABOUT OneAccess. Value-Adding Software Licenses TMA For EAD and TDM products Value-Adding Software Licenses ABOUT OneAccess OneAccess designs and develops a range of world-class multiservice routers for over 125 global service provider customers including

More information

Windows Server 2003 Logon Scripts Paul Flynn

Windows Server 2003 Logon Scripts Paul Flynn Creating logon scripts You can use logon scripts to assign tasks that will be performed when a user logs on to a particular computer. The scripts can carry out operating system commands, set system environment

More information

Lab Sample Solutions. Chapter 3

Lab Sample Solutions. Chapter 3 Lab Sample Solutions Chapter 3 1 First, run Update-Help and ensure it completes without errors. That will get a copy of the help on your local computer. You ll need an internet connection, and the shell

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

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

TECHNICAL DOCUMENTATION SPECOPS DEPLOY / APP 4.7 DOCUMENTATION

TECHNICAL DOCUMENTATION SPECOPS DEPLOY / APP 4.7 DOCUMENTATION TECHNICAL DOCUMENTATION SPECOPS DEPLOY / APP 4.7 DOCUMENTATION Contents 1. Getting Started... 4 1.1 Specops Deploy Supported Configurations... 4 2. Specops Deploy and Active Directory...5 3. Specops Deploy

More information

COMMANDS 1 Overview... 1 Default Commands... 2 Creating a Script from a Command... 10 Document Revision History... 10

COMMANDS 1 Overview... 1 Default Commands... 2 Creating a Script from a Command... 10 Document Revision History... 10 LabTech Commands COMMANDS 1 Overview... 1 Default Commands... 2 Creating a Script from a Command... 10 Document Revision History... 10 Overview Commands in the LabTech Control Center send specific instructions

More information

NETWRIX WINDOWS SERVER CHANGE REPORTER

NETWRIX WINDOWS SERVER CHANGE REPORTER NETWRIX WINDOWS SERVER CHANGE REPORTER INSTALLATION AND CONFIGURATION GUIDE Product Version: 4.0 March 2013. Legal Notice The information in this publication is furnished for information use only, and

More information

PowerShell Support in SCAP 1.2. Michael Tan Microsoft Corporation

PowerShell Support in SCAP 1.2. Michael Tan Microsoft Corporation PowerShell Support in SCAP 1.2 Michael Tan Microsoft Corporation November, 2011 Topics Problems and Business Needs PowerShell Overview PowerShell configuration in SCAP 1.2 Demo Q/A Problems and Business

More information

Guide to deploy MyUSBOnly via Windows Logon Script Revision 1.1. Menu

Guide to deploy MyUSBOnly via Windows Logon Script Revision 1.1. Menu Menu INTRODUCTION...2 HOW DO I DEPLOY MYUSBONLY ON ALL OF MY COMPUTERS...3 ADMIN KIT...4 HOW TO SETUP A LOGON SCRIPTS...5 Why would I choose one method over another?...5 Can I use both methods to assign

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

Dell UPS Local Node Manager USER'S GUIDE EXTENSION FOR MICROSOFT VIRTUAL ARCHITECTURES Dellups.com

Dell UPS Local Node Manager USER'S GUIDE EXTENSION FOR MICROSOFT VIRTUAL ARCHITECTURES Dellups.com CHAPTER: Introduction Microsoft virtual architecture: Hyper-V 6.0 Manager Hyper-V Server (R1 & R2) Hyper-V Manager Hyper-V Server R1, Dell UPS Local Node Manager R2 Main Operating System: 2008Enterprise

More information

Kaseya 2. User Guide. Version R8. English

Kaseya 2. User Guide. Version R8. English Kaseya 2 Discovery User Guide Version R8 English September 19, 2014 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS as

More information

Password Manager Windows Desktop Client

Password Manager Windows Desktop Client Password Manager Windows Desktop Client EmpowerID provides an extension that allows organizations to plug into Password Manager to customize the Windows logon experience beyond that supplied by the standard

More information

Integrated Virtual Debugger for Visual Studio Developer s Guide VMware Workstation 8.0

Integrated Virtual Debugger for Visual Studio Developer s Guide VMware Workstation 8.0 Integrated Virtual Debugger for Visual Studio Developer s Guide VMware Workstation 8.0 This document supports the version of each product listed and supports all subsequent versions until the document

More information

(Installation through ADSelfService Plus web portal and Manual Installation)

(Installation through ADSelfService Plus web portal and Manual Installation) ADSelfService Plus Client Software Installation Guide (Installation through ADSelfService Plus web portal and Manual Installation) 1 Table of Contents Introduction:... 3 ADSelfService Plus Client software:...

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide BlackBerry Resource Kit for BlackBerry Enterprise Service 10 Version 10.2 Published: 2015-11-12 SWD-20151112124827386 Contents Overview: BlackBerry Enterprise Service

More information

Networking Lab - Vista Public Network Sharing

Networking Lab - Vista Public Network Sharing Networking Lab - Vista Public Network Sharing After completing the lab activity, you will be able to: Explain the differences between Windows XP and Windows Vista network sharing. Explain the purpose of

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

Microsoft Corporation. Project Server 2010 Installation Guide

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

More information

HYPERION SYSTEM 9 N-TIER INSTALLATION GUIDE MASTER DATA MANAGEMENT RELEASE 9.2

HYPERION SYSTEM 9 N-TIER INSTALLATION GUIDE MASTER DATA MANAGEMENT RELEASE 9.2 HYPERION SYSTEM 9 MASTER DATA MANAGEMENT RELEASE 9.2 N-TIER INSTALLATION GUIDE P/N: DM90192000 Copyright 2005-2006 Hyperion Solutions Corporation. All rights reserved. Hyperion, the Hyperion logo, and

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

Global Image Management System For epad-vision. User Manual Version 1.10

Global Image Management System For epad-vision. User Manual Version 1.10 Global Image Management System For epad-vision User Manual Version 1.10 May 27, 2015 Global Image Management System www.epadlink.com 1 Contents 1. Introduction 3 2. Initial Setup Requirements 3 3. GIMS-Server

More information

# Demo: jak to działa?

# Demo: jak to działa? # Demo: jak to działa? #region Obiekt w rurce ps & { $_.GetType(.FullName #region Begin -> Process -> End $Przed = $false $Po = $false 1,2,3 & { Begin { Write-Warning "Begin 1" Write-Warning "Tu nic nie

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

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

Not Just for Scheduling: Doing More with SAS Enterprise Guide Automation Chris Hemedinger, SAS Institute Inc, Cary, NC

Not Just for Scheduling: Doing More with SAS Enterprise Guide Automation Chris Hemedinger, SAS Institute Inc, Cary, NC ABSTRACT Paper 298-2012 Not Just for Scheduling: Doing More with SAS Enterprise Guide Automation Chris Hemedinger, SAS Institute Inc, Cary, NC SAS Enterprise Guide supports a rich automation model that

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

FREQUENTLY ASKED QUESTIONS

FREQUENTLY ASKED QUESTIONS FREQUENTLY ASKED QUESTIONS Secure Bytes, October 2011 This document is confidential and for the use of a Secure Bytes client only. The information contained herein is the property of Secure Bytes and may

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

Fleet Maintenance Software

Fleet Maintenance Software Fleet Maintenance Software Welcome Thank you for taking time to review FleetWise VB Maintenance Management Made Simple. This guide is intended to provide a quick overview of installing the software and

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

AdminToys Suite. Installation & Setup Guide

AdminToys Suite. Installation & Setup Guide AdminToys Suite Installation & Setup Guide Copyright 2008-2009 Lovelysoft. All Rights Reserved. Information in this document is subject to change without prior notice. Certain names of program products

More information

PeopleSoft Application Designer Installation Documentation

PeopleSoft Application Designer Installation Documentation PeopleSoft Application Designer Installation Documentation NOTE: If you already have PeopleSoft Application Designer installed and working on your machine you do not need to re-install. You can simply

More information

Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website

Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website Mapping ITS s File Server Folder to Mosaic Windows to Publish a Website April 16 2012 The following instructions are to show you how to map your Home drive using ITS s Network in order to publish a website

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

SonicWALL CDP 5.0 Microsoft Exchange User Mailbox Backup and Restore

SonicWALL CDP 5.0 Microsoft Exchange User Mailbox Backup and Restore SonicWALL CDP 5.0 Microsoft Exchange User Mailbox Backup and Restore Document Scope This solutions document describes how to configure and use the Microsoft Exchange User Mailbox Backup and Restore feature

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

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide

WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide WebSpy Vantage Ultimate 2.2 Web Module Administrators Guide This document is intended to help you get started using WebSpy Vantage Ultimate and the Web Module. For more detailed information, please see

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

Ad Hoc Transfer Plug-in for Outlook Installation Guide

Ad Hoc Transfer Plug-in for Outlook Installation Guide IPSWITCH TECHNICAL BRIEF Ad Hoc Transfer Plug-in for Outlook Installation Guide In This Document Installing the Ad Hoc Transfer Plug-in for Outlook...1 Silent Install for Ad Hoc Transfer Plug-in for Outlook...3

More information

Redirect Printer Port to LPT3 for Printing to Local Printer in Remote Desktop Session

Redirect Printer Port to LPT3 for Printing to Local Printer in Remote Desktop Session Redirect Printer Port to LPT3 for Printing to Local Printer in Remote Desktop Session Remote Desktop client CAN redirect printing to the local printer while controlling a host. http://support.microsoft.com/kb/312135

More information

Intelligent Power Protector User manual extension for Microsoft Virtual architectures: Hyper-V 6.0 Manager Hyper-V Server (R1&R2)

Intelligent Power Protector User manual extension for Microsoft Virtual architectures: Hyper-V 6.0 Manager Hyper-V Server (R1&R2) Intelligent Power Protector User manual extension for Microsoft Virtual architectures: Hyper-V 6.0 Manager Hyper-V Server (R1&R2) Hyper-V Manager Hyper-V Server R1, R2 Intelligent Power Protector Main

More information

W H I T E P A P E R : T E C H N I C AL. Enterprise Vault 9.0 Archiving from Exchange Server 2010. Dan Strydom Technical Field Enablement November 2010

W H I T E P A P E R : T E C H N I C AL. Enterprise Vault 9.0 Archiving from Exchange Server 2010. Dan Strydom Technical Field Enablement November 2010 W H I T E P A P E R : T E C H N I C AL Enterprise Vault 9.0 Archiving from Exchange Server 2010 Dan Strydom Technical Field Enablement November 2010 White Paper: Symantec Technical Contents Introduction...

More information

HP Data Protector. Granular Recovery Extension User Guide for Microsoft Exchange Server. Software Version: 9.00. Document Release Date: June 2014

HP Data Protector. Granular Recovery Extension User Guide for Microsoft Exchange Server. Software Version: 9.00. Document Release Date: June 2014 HP Data Protector Software Version: 9.00 Granular Recovery Extension User Guide for Microsoft Exchange Server Document Release Date: June 2014 Software Release Date: June 2014 Legal Notices Warranty The

More information

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

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

More information

Application Manager. Installation and Upgrade Guide. Version 8 FR6

Application Manager. Installation and Upgrade Guide. Version 8 FR6 Application Manager Installation and Upgrade Guide Version 8 FR6 APPLICATION MANAGER INSTALLATION AND UPGRADE GUIDE ii AppSense Limited, 2012 All rights reserved. No part of this document may be produced

More information

HELP DOCUMENTATION E-SSOM INSTALLATION GUIDE

HELP DOCUMENTATION E-SSOM INSTALLATION GUIDE HELP DOCUMENTATION E-SSOM INSTALLATION GUIDE Copyright 1998-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

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

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information