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

Size: px
Start display at page:

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

Transcription

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

2 Agenda Introduction to PowerShell PowerShell Power Developer Angle Long Term Strategy 2

3 SUNGARD SUMMIT 2007 sungardsummit.com 3 Introduction to PowerShell A Community of Learning

4 What is PowerShell? New command-line shell and scripting language Multiple perspectives for use: System Administrators Developers Object based, not text based (.NET 2.0 objects) Can still use the regular, old.exe s you re used to! Formerly code-named Monad Free download from Microsoft 4

5 What does it look like? 5

6 Cmdlets (pronounced command-lets ) Command that performs a single function Operate on objects Use a verb-noun naming convention Can chain cmdlets together to do powerful things About 130 built-in cmdlets Can create your own cmdlets 6

7 Available cmdlets use get-command 7

8 More examples: Get-command Get-content/set-content Get-childitem Get-process Get-service Get-help Shows all cmdlets installed in the shell. Reads a text file/writes a text file. Equivalent of dir in DOS, for the file system Retrieves the running processes, equivalent to tasklist.exe Retrieves running services, equivalent to sc.exe Gets help for a specific cmdlet 8

9 Scripting Support New scripting language, object oriented-like Language for manipulating.net objects. Consistent environment for using cmdlets. Support complex tasks, without making simple tasks more complex. Consistent with higher-level languages used in.net programming, such as C#. 9

10 Scripting Language Variables begin with a $ (variables have scope) Variables are objects and have properties/methods Has all the constructs you d expect from a modern language: if/then, while, for, foreach, do, switch, trap/throw Scripts can be stored in script files (.ps1 extension) or even other variables. Can create and store functions in shell for reuse 10

11 SUNGARD SUMMIT 2007 sungardsummit.com 11 PowerShell Power A Community of Learning

12 Object Pipeline Pipes connect cmdlets Pipes pass objects, not text Objects package together related information Examples: get-process format-list out-file c:\list.txt get-service where-object {$_.Status eq Running } get-childitem sort-object length get-content c:\list.txt select-object first 5 get-date get-member 12

13 General use cmdlets Filtering pipeline objects use where-object, selectobject, sort-object and group-object. Format pipeline objects for output (or other cmdlets) use format-list, format-table, format-wide and formatcustom. 13

14 Text File manipulation Use set-content, add-content and get-content to read, append and write text files. Can still use > and >> redirection Use import-csv and export-csv to read and write comma separated values files. Note: Excel can use CSV files. Use import-clixml and export-clixml to read and write XML based representations of PowerShell objects 14

15 Variables Always begin with a $ Can contain any other characters after $ but need to use curly braces No need to declare, just create and use Have scope Variables are.net objects Examples: $var = 1 ${student name} = Joe Smith $date = get-date $a = get-process # returns an array 15

16 .NET, COM and WMI Can access.net classes, COM objects and WMI with new-object and get-wmiobject. Examples: $wc = new-object Typename System.Net.WebClient $list = new-object System.Collections.ArrayList [System.IO.File]::Exists( c:\junk.txt ) $wsh = new-object ComObject WScript.Shell $fso = new-object Com Scripting.FileSystemObject $ie = new-object Com InternetExplorer.Application $excel = new-object Com Excel.Application 16

17 WMI continued Windows Management Instrumentation (WMI) is an administration technology for Windows Examples: get-wmiobject class win32_computersystem get-wmiobject win32_operatingsystem Get-wmiobject win32_logicaldisk Get-wmiobject list # show all classes 17

18 get-wmiobject examples 18

19 Providers Provides connectivity to a type of resource (data store) File system Registry Alias Environment (windows environment) Function Variable Certificate (digital certificates) PowerShell has it s own concept of a drive location for a data store. See get-psdrive and get-psprovider 19

20 Scripts PowerShell code can be saved in script files for reuse Use a.ps1 extension Don t forget - can call regular old.exe s in script! Type name of file minus the.ps1 extension and interactive shell will search for the file in the environment Path variable. Or Type full path name with the ps1 extension. Execute with a period. To run the script in the current scope. Interactive shell looks for first for an alias, then function, then cmdlet, then script and finally an external.exe. Execute from DOS\Batch\Windows powershell.exe c:\myscript.ps1 20

21 Customizing the shell environment Use a profile script to set aliases, functions, map drives or any other startup commands Profiles don t exist by default Profiles are read in order, the last one wins 21

22 Profiles %windir%\system32\windowspowershell\v1.0\profile.ps1 This profile is loaded for all users. %windir%\system32\windowspowershell\v1.0\ Microsoft.PowerShell_profile.ps1 This profile is loaded for all users, and only for the default instance of PowerShell. %UserProfile%\My Documents\WindowsPowerShell\profile.ps1 This profile is loaded per-user, and affects all versions of PowerShell which are installed. %UserProfile%\\My Documents\WindowsPowerShell\ Microsoft.PowerShell_profile.ps1 This profile is loaded per-user, but only affects the default instance of PowerShell. 22

23 Security Execution policy determines if user can load configuration files, run scripts and/or require digital signatures for scripts. Integrated with Active Directory / Group Policy Policies are: Restricted, AllSigned, RemoteSigned and Unrestricted Use get/set-executionpolciy to view and change Can use certificates to sign scripts (see setauthenticodesignature) 23

24 SUNGARD SUMMIT 2007 sungardsummit.com 24 Developer Angle A Community of Learning

25 Additional things you can do with PowerShell Author cmdlets, providers and filters in Visual Studio Create your own custom shell (typically for integration with other applications) As of 2/7/07, need to install the Windows PowerShell SDK which is part of the Microsoft Windows SDK for Windows Vista. 25

26 Steps to author a cmdlet Create Visual Studio project Add desired cmdlets and snap-in class Compile to a.dll Register the.dll with installutil.exe (verify with getpssnapin registered) Add snap-in to the shell with add-pssnapin YourSnapIn Verify cmdlets have been added to the shell with getcommand Run new cmdlets! Can use export-console to save state of console for later reuse 26

27 Creating a custom shell Use the make-shell.exe utility from the SDK Allows creation of customized shells primarily for specialized snap-ins 27

28 SUNGARD SUMMIT 2007 sungardsummit.com 28 Long Term Strategy A Community of Learning

29 Where does it fit in Microsoft s strategy? Strategic commitment to.net, PowerShell is built on.net Eventually become part of Windows (not for Vista or Longhorn, though) Exchange 2007 has PowerShell interface known as Exchange Management Shell Some IIS 7 integration 29

30 Where to get it? Requirements? sh/download.mspx 2 meg download but needs.net 2.0 OS requirements: Windows XP SP 2, Windows Server 2003, Vista and Longhorn 30

31 Useful links Homepage s/management/powershell/default.mspx PowerShell Team Blog Other good PowerShell sites mspx 31

32 Questions & Answers 32

33 Thank You! Jeff Modzel Please complete the online class evaluation form for: Microsoft PowerShell SunGard, the SunGard logo, Banner, Campus Pipeline, Luminis, PowerCAMPUS, Matrix, and Plus are trademarks or registered trademarks of SunGard Data Systems Inc. or its subsidiaries in the U.S. and other countries. Third-party names and marks referenced herein are trademarks or registered trademarks of their respective owners SunGard. All rights reserved. 33

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 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

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

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

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 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

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

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

fsaatlas Case Management And Communication

fsaatlas Case Management And Communication SUNGARD SUMMIT 2007 sungardsummit.com 1 fsaatlas Case Management And Communication Presented by: Henky Erawan, SunGard Higher Education - fsaatlas March 20 th, 2007 A Community of Learning Session Rules

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

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

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

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

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

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

Note: The scripts in this article should work for XenApp 6 and XenApp 5 for Windows Server 2008 and XenApp 5 for Windows Server 2003.

Note: The scripts in this article should work for XenApp 6 and XenApp 5 for Windows Server 2008 and XenApp 5 for Windows Server 2003. Recently I was asked how to use PowerShell to get a list of offline Citrix XenApp servers. Being new to PowerShell, this gave me an opportunity to use some of my new knowledge. At the time this article

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

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

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

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

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

Luminis to Banner Single Sign-On

Luminis to Banner Single Sign-On SUNGARD SUMMIT 2007 sungardsummit.com 1 Luminis to Banner Single Sign-On Presented by: Rajesh Kumar Les von Holstein SunGard Higher Education Tuesday 8:30 AM March 20, 2007 A Community of Learning Session

More information

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

ICT dag 03/12 Managing Systems with PowerShell. Bart Portier docent TW KHK Geel Microsoft Certified Trainer ICT dag 03/12 Managing Systems with PowerShell Bart Portier docent TW KHK Geel Microsoft Certified Trainer What is PowerShell? Comparing applications and scripts in Vista Learning PowerShell Automating

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

Windows PowerShell Essentials

Windows PowerShell Essentials Windows PowerShell Essentials Windows PowerShell Essentials Edition 1.0. This ebook is provided for personal use only. Unauthorized use, reproduction and/or distribution strictly prohibited. All rights

More information

Active Directory Account Provisioning (ADAP)

Active Directory Account Provisioning (ADAP) SUNGARD SUMMIT 2007 sungardsummit.com 1 Active Directory Account Provisioning (ADAP) Presented by: Tom Chamberlin SunGardHE March 22, 2007 A Community of Learning Introduction Developed by SunGard Integration

More information

Crystal Report tips and Techniques

Crystal Report tips and Techniques SUNGARD SUMMIT 2007 sungardsummit.com 1 Crystal Report tips and Techniques Presented by: Instructor Jim Tule March 20, 2007 A Community of Learning Introduction Crystal Reports tips and techniques used

More information

Intel vpro Technology Module for Microsoft* Windows PowerShell*

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

More information

PowerCAMPUS Portal and Active Directory

PowerCAMPUS Portal and Active Directory SUNGARD SUMMIT 2007 sungardsummit.com 1 PowerCAMPUS Portal and Active Directory Presented by: Chad Sexton PowerCAMPUS Portal Development March 21, 2007 A Community of Learning Overview SunGard Higher Education

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

HIGHER EDUCATION. What can we help you achieve? SunGard Banner Financial Aid

HIGHER EDUCATION. What can we help you achieve? SunGard Banner Financial Aid HIGHER EDUCATION What can we help you achieve? SunGard Banner Financial Aid Tulsa Community College Agenda for Consulting Workshop 1 April 1-3, 2008 Tulsa Community College 05_Consulting One Agenda.doc

More information

PeopleAdmin and Banner HR Interface

PeopleAdmin and Banner HR Interface SUNGARD SUMMIT 2007 sungardsummit.com 1 PeopleAdmin and Banner HR Interface Presented by: Carrie Silliman and Laura Weathersby SunGard Higher Education March 20, 2007 A Community of Learning Session Rules

More information

Wireshark Developer and User Conference

Wireshark Developer and User Conference Wireshark Developer and User Conference PowerShell and TShark 26 June 2012 Graham Bloice So,ware Developer Trihedral UK Limited SHARKFEST 12 UC Berkeley June 24-27, 2012 IntroducJon R&D So,ware Developer

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

Georgia Tech s Luminis IV Beta Testing

Georgia Tech s Luminis IV Beta Testing SUNGARD SUMMIT 2007 sungardsummit.com 1 Georgia Tech s Luminis IV Beta Testing Presented by: Steve Goeke Georgia Tech March 22, 2007 A Community of Learning Agenda Portal Environment and Architecture To

More information

Data Governance Can It Help?

Data Governance Can It Help? SUNGARD SUMMIT 2007 sungardsummit.com 1 Data Governance Can It Help? Presented by: Lorinda L Bishop University of Toledo March 20, 2007 A Community of Learning Introduction Do you have a Data Standards

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

INSTALLING MICROSOFT SQL SERVER AND CONFIGURING REPORTING SERVICES

INSTALLING MICROSOFT SQL SERVER AND CONFIGURING REPORTING SERVICES INSTALLING MICROSOFT SQL SERVER AND CONFIGURING REPORTING SERVICES TECHNICAL ARTICLE November 2012. Legal Notice The information in this publication is furnished for information use only, and does not

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

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

Virtual Printing Solutions with View in Horizon 6

Virtual Printing Solutions with View in Horizon 6 VMware Horizon 6.x TECHNICAL WHITE PAPER Table of Contents Overview.... 3 Printer Redirection.... 3 Location-Based Printing.... 3 Virtual Printing Compatibility Matrix.... 4 Use Cases and Topology....

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

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

Banner Training and Help Desk Plan

Banner Training and Help Desk Plan SUNGARD SUMMIT 2007 sungardsummit.com 1 Banner Training and Help Desk Plan Becky North and Dianne Coleman Wichita State University March 20, 2007 A Community of Learning Wichita State University Campus

More information

Tips and Tricks Guide tm. Windows Administration. Don Jones and Dan Sullivan

Tips and Tricks Guide tm. Windows Administration. Don Jones and Dan Sullivan Tips and Tricks Guide tm To tm Windows Administration Don Jones and Dan Sullivan Tip, Trick, Technique 5: Evaluating Windows Server Backup... 1 Installing Windows Server Backup... 1 Using Windows Server

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

Small School Disaster Recovery Plan

Small School Disaster Recovery Plan SUNGARD SUMMIT 2007 sungardsummit.com 1 Small School Disaster Recovery Plan Presented by: Jing Ding Lourdes College 6832 Convent Boulevard Sylvania, OH 43560 www.loudes.edu March 21, 2007 8:30am 9:30am

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

Scoring Big with Automated Payroll Deductions

Scoring Big with Automated Payroll Deductions SUNGARD SUMMIT 2007 sungardsummit.com 1 Scoring Big with Automated Payroll Deductions Presented by: Holly Dombkowski & Doug Waldie Lourdes College March 22, 2007 A Community of Learning Welcome to Automated

More information

Going Through Withdrawals at WSU Presented by: Bhavani Koneru and Scott Owczarek Wayne State University March 20, 2007 Course ID: 282

Going Through Withdrawals at WSU Presented by: Bhavani Koneru and Scott Owczarek Wayne State University March 20, 2007 Course ID: 282 May 4, 2007SUNGARD SUMMIT 2007 sungardsummit.com 1 Going Through Withdrawals at WSU Presented by: Bhavani Koneru and Scott Owczarek Wayne State University March 20, 2007 Course ID: 282 A Community of Learning

More information

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

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

More information

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

Getting Ready for Recruiting & Retention Solutions

Getting Ready for Recruiting & Retention Solutions SUNGARD SUMMIT 2007 sungardsummit.com 1 Getting Ready for Recruiting & Retention Solutions Moderated by: Mark Zimmerman, Executive Director Constituent Relations Solutions SunGard Higher Education March

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

Load Testing your Banner Systems

Load Testing your Banner Systems SUNGARD SUMMIT 2007 sungardsummit.com Load Testing your Banner Systems Presented by: Scott Hollen University of Richmond March 22, 2007 A Community of Learning Introduction What is load testing? Why test?

More information

Troubleshoot Using Event Log Mining

Troubleshoot Using Event Log Mining Troubleshoot Using Event Log Mining Jeff Hicks 1. 8 0 0. 8 1 3. 6 4 1 5 w w w. s c r i p t l o g i c. c o m / s m b I T 2011 ScriptLogic Corporation ALL RIGHTS RESERVED. ScriptLogic, the ScriptLogic logo

More information

A layman s guide to PowerShell 2.0 remoting. Ravikanth Chaganti

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

More information

Implementing Multi-machine Monitoring

Implementing Multi-machine Monitoring Implementing Multi-machine Monitoring Excerpted from Windows PowerShell in Action, Second Edition EARLY ACCESS EDITION Bruce Payette MEAP Release: February 2009 Softbound print: June 2010 (est. 700 pages

More information

Windows PowerShell 2.0

Windows PowerShell 2.0 Windows PowerShell 2.0 William R. Stanek Author and Series Editor Administrator s Pocket Consultant PUBLISHED BY Microsoft Press A Division of Microsoft Corporation One Microsoft Way Redmond, Washington

More information

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

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

More information

Web Services Integration Case Study - Housing

Web Services Integration Case Study - Housing SUNGARD SUMMIT 2007 sungardsummit.com 1 Web Services Integration Case Study - Housing Presented by: Tom Chamberlin, Suresh Chellapilla, Richard Moon SunGard Higher Education March 21, 2007 A Community

More information

The Windows PowerShell Owner s Manual: Version 2.0. Jean Ross and Greg Stemp Microsoft Communications Server UA

The Windows PowerShell Owner s Manual: Version 2.0. Jean Ross and Greg Stemp Microsoft Communications Server UA The Windows PowerShell Owner s Manual: Version 2.0 Jean Ross and Greg Stemp Microsoft Communications Server UA This document is provided as-is. Information and views expressed in this document, including

More information

Backing Up and Recovering Your Server

Backing Up and Recovering Your Server 8 Backing Up and Recovering Your Server In this chapter, you will learn to: Understand Backup and Recovery (Pages 254 262) 33n Understand Backup and Recovery Terminology (Page 255) n Use Backup and Recovery

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

High-Availability and Scalability

High-Availability and Scalability SUNGARD SUMMIT 2007 sungardsummit.com 1 High-Availability and Scalability Presented by: Gary Fitzgerald SunGard Higher Education March 21, 2007 A Community of Learning Introduction Session goal: To understand

More information

CA ARCserve Replication and High Availability

CA ARCserve Replication and High Availability CA ARCserve Replication and High Availability Installation Guide r16 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

SQL Server 2005 Express Installation guide

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

More information

The Luminis Portal and Dashboard Reports

The Luminis Portal and Dashboard Reports SUNGARD SUMMIT 2007 sungardsummit.com The Luminis Portal and Dashboard Reports Presented by: Joe Sawasky and Dominic D Emilio The University of Toledo March 20, 2007 A Community of Learning Introduction

More information

DOAG 2011 DP Tricks-1

DOAG 2011 DP Tricks-1 DOAG 2011 DP Tricks-1 DOAG 2011 DP Tricks - 2 DOAG 2011 DP Tricks-3 DOAG 2011 DP Tricks-4 Aufrufsyntax: PowerShell[.exe] [-PSConsoleFile -Version ] [-NoLogo] [-NoExit] [-Sta] [-NoProfile]

More information

CA ARCserve Replication and High Availability

CA ARCserve Replication and High Availability CA ARCserve Replication and High Availability Installation Guide r15 This documentation and any related computer software help programs (hereinafter referred to as the "Documentation") are for your informational

More information

Authoring for System Center 2012 Operations Manager

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

More information

Fairsail. Implementer. Fairsail to Active Directory Synchronization. Version 1.0 FS-PS-FSAD-IG-201310--R001.00

Fairsail. Implementer. Fairsail to Active Directory Synchronization. Version 1.0 FS-PS-FSAD-IG-201310--R001.00 Fairsail Implementer Fairsail to Active Directory Synchronization Version 1.0 FS-PS-FSAD-IG-201310--R001.00 Fairsail 2013. All rights reserved. This document contains information proprietary to Fairsail

More information

Question: Hi Everyone! Thank you TEACHERS, MICROSOFT, MVA and Event Support Team for this lesson! Answer: Great to see you POPA DAN!

Question: Hi Everyone! Thank you TEACHERS, MICROSOFT, MVA and Event Support Team for this lesson! Answer: Great to see you POPA DAN! 08:39:56 PDT Question: Will this course be available to download after the live presentation? Answer: Yes, as always the presentation will be shared in the FAQ (maybe you need to refresh your browser once

More information

BMC Performance Manager Windows Security White Paper DCOM / WMI

BMC Performance Manager Windows Security White Paper DCOM / WMI BMC Performance Manager Windows Security White Paper DCOM / WMI Problem The IT department delivers user IT services to their internal and external customers. The IT department wants to maintain control

More information

VMware vsphere PowerCLI User's Guide

VMware vsphere PowerCLI User's Guide vsphere PowerCLI 5.0.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions

More information

Windows Command-line Automation Techniques for Dell EqualLogic PS Series Arrays

Windows Command-line Automation Techniques for Dell EqualLogic PS Series Arrays Technical Report Windows Command-line Automation Techniques for Dell EqualLogic PS Series Arrays Abstract This Technical report will describe different methods of command line automation available for

More information

Using the Citrix Service Provider License Reporting Tool

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

More information

Version 1.1. Release Date: May 10, 2015

Version 1.1. Release Date: May 10, 2015 Version 1.1 Release Date: May 10, 2015 Table of Contents Copyrights... 2 Add User Permission... 3 File Format... 6 Upload File For Use... 7 Approach 1: Through the Portal... 7 Approach 2: Through the Web

More information

HP Device Monitor (v 1.1) for Microsoft System Center User Guide

HP Device Monitor (v 1.1) for Microsoft System Center User Guide HP Device Monitor (v 1.1) for Microsoft System Center User Guide Abstract This guide provides information on using the HP Device Monitor version 1.1 to monitor hardware components in an HP Insight Control

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

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

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

CA ARCserve Replication and High Availability

CA ARCserve Replication and High Availability CA ARCserve Replication and High Availability Installation Guide r16 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Banner DBA Survival Guide

Banner DBA Survival Guide SUNGARD SUMMIT 2007 sungardsummit.com 1 Banner DBA Survival Guide Presented by: Kathleen O Donnell, Pacific Lutheran University March 20, 2007 Course ID: 029 A Community of Learning Introduction Purpose

More information

Configuring and Integrating PowerShell

Configuring and Integrating PowerShell Configuring and Integrating PowerShell The Basics of PowerShell 3 PowerShell and Sam: Configuration and Usage 4 Exchange 2010 Management Tools 5 64-bit vs. 32-bit 9 PowerShell Templates and Monitors 12

More information

Managing Your Workflow System

Managing Your Workflow System SUNGARD SUMMIT 2007 sungardsummit.com 1 Managing Your Workflow System Presented by: Michael Brzycki, SunGard Higher Education March 20, 2007 A Community of Learning Introduction Topic: Learn how to leverage

More information

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

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

More information

Banner Security: A Functional View

Banner Security: A Functional View Banner Security: A Functional View Presented by: Deb Brooks, Florida Atlantic University March 20, 2007 A Community of Learning Objective This session is designed to assist the Functional Security Officer

More information

NVIDIA WMI. WP-06953-001_v02 August 2013. White Paper

NVIDIA WMI. WP-06953-001_v02 August 2013. White Paper NVIDIA WMI WP-06953-001_v02 August 2013 White Paper DOCUMENT CHANGE HISTORY WP-06953-001_v02 Version Date Authors Description of Change 01 July 29, 2013 CM, SM Initial Release 02 August 8, 2013 CM, SM

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

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Ed-Fi ODS and Ed-Fi ODS API Version 2.0 - Technical Preview October 2014 2014 Ed-Fi Alliance, LLC. All rights reserved. Ed-Fi is a registered trademark

More information

HP Device Monitor (v 1.2) for Microsoft System Center User Guide

HP Device Monitor (v 1.2) for Microsoft System Center User Guide HP Device Monitor (v 1.2) for Microsoft System Center User Guide Abstract This guide provides information on using the HP Device Monitor version 1.2 to monitor hardware components in an HP Insight Control

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

Overview of Active Directory Rights Management Services with Windows Server 2008 R2

Overview of Active Directory Rights Management Services with Windows Server 2008 R2 Overview of Active Directory Rights Management Services with Windows Server 2008 R2 Student Manual Module 3: Active Directory Rights Management Clients and Information Rights Management on Desktop Applications

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

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

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

More information

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

Technical Overview of Terminal Services

Technical Overview of Terminal Services Technical Overview of Terminal Services Microsoft Corporation Updated: January 2005 Abstract Windows Server 2003 includes the Terminal Services features of Windows 2000, the client and protocol enhancements

More information