DOAG 2011 DP Tricks-1

Size: px
Start display at page:

Download "DOAG 2011 DP Tricks-1"

Transcription

1 DOAG 2011 DP Tricks-1

2 DOAG 2011 DP Tricks - 2

3 DOAG 2011 DP Tricks-3

4 DOAG 2011 DP Tricks-4

5 Aufrufsyntax: PowerShell[.exe] [-PSConsoleFile <Datei> -Version <Version>] [-NoLogo] [-NoExit] [-Sta] [-NoProfile] [-NonInteractive] [-InputFormat {Text XML}] [-OutputFormat {Text XML}] [-WindowStyle <style>] [-EncodedCommand <Base64EncodedCommand>] [-File <Dateipfad> <Argumente>] [-ExecutionPolicy <ExecutionPolicy>] [-Command { - <script-block> [-args <arg-array>] <string> [<CommandParameters>] } ] PowerShell[.exe] -Help -? /? REM Powershell Pack Erweiterungspack WPK Create rich user interfaces quick and easily from Windows PowerShell. Think HTA, but easy. Over 600 scripts to help you build quick user interfaces TaskScheduler List scheduled tasks, create or delete tasks FileSystem Monitor files and folders, check for duplicate files, and check disk space IsePack Supercharge your scripting in the Integrated Scripting Environment with over 35 shortcuts DotNet Explore loaded types, find commands that can work with a type, and explore how you can use PowerShell, DotNet and COM together PSImageTools Convert, rotate, scale, and crop images and get image metadata PSRSS Harness the FeedStore from PowerShell PSSystemTools Get Operating System or Hardware Information PSUserTools Get the users on a system, check for elevation, and startprocessaadministrator PSCodeGen Generates PowerShell scripts, C# code, and P/Invoke DOAG 2011 DP Tricks-5

6 DOAG 2011 DP Tricks-6

7 DOAG 2011 DP Tricks-7

8 Ausgabe von get-date get-member: Name MemberType Definition Add Method System.DateTime Add(System.TimeSpan value) AddDays Method System.DateTime AddDays(double value) AddHours Method System.DateTime AddHours(double value) AddMilliseconds Method System.DateTime AddMilliseconds(double value) AddMinutes Method System.DateTime AddMinutes(double value) AddMonths Method System.DateTime AddMonths(int months) AddSeconds Method System.DateTime AddSeconds(double value) AddTicks Method System.DateTime AddTicks(long value) AddYears Method System.DateTime AddYears(int value) CompareTo Method int CompareTo(System.Object value), int CompareTo(System.DateTime value) Equals Method bool Equals(System.Object value), bool Equals(System.DateTime value) GetDateTimeFormats Method string[] GetDateTimeFormats(), string[] GetDateTimeFormats(System.IFormatProvider provider), string[... GetHashCode Method int GetHashCode() GetType Method type GetType() GetTypeCode Method System.TypeCode GetTypeCode() IsDaylightSavingTime Method bool IsDaylightSavingTime() Subtract Method System.TimeSpan Subtract(System.DateTime value), System.DateTime Subtract(System.TimeSpan value) ToBinary Method long ToBinary() ToFileTime Method long ToFileTime() ToFileTimeUtc Method long ToFileTimeUtc() ToLocalTime Method System.DateTime ToLocalTime() ToLongDateString Method string ToLongDateString() DOAG 2011 DP Tricks-8

9 Fortsetzung der Ausgabe von get-date get-member: ToLongTimeString Method string ToLongTimeString() ToOADate Method double ToOADate() ToShortDateString Method string ToShortDateString() ToShortTimeString Method string ToShortTimeString() ToString Method string ToString(), string ToString(string format), string ToString(System.IFormatProvider provider),... ToUniversalTime Method System.DateTime ToUniversalTime() DisplayHint NoteProperty Microsoft.PowerShell.Commands.DisplayHintType DisplayHint=DateTime Date Property System.DateTime Date {get;} Day Property System.Int32 Day {get;} DayOfWeek Property System.DayOfWeek DayOfWeek {get;} DayOfYear Property System.Int32 DayOfYear {get;} Hour Property System.Int32 Hour {get;} Kind Property System.DateTimeKind Kind {get;} Millisecond Property System.Int32 Millisecond {get;} Minute Property System.Int32 Minute {get;} Month Property System.Int32 Month {get;} Second Property System.Int32 Second {get;} Ticks Property System.Int64 Ticks {get;} TimeOfDay Property System.TimeSpan TimeOfDay {get;} Year Property System.Int32 Year {get;} DateTime ScriptProperty System.Object DateTime {get=if ((& { Set-StrictMode -Version 1; $this.displayhint }) -ieq "Date")... DOAG 2011 DP Tricks-9

10 DOAG 2011 DP Tricks-10

11 DOAG 2011 DP Tricks-11

12 DOAG 2011 DP Tricks-12

13 DOAG 2011 DP Tricks-13

14 DOAG 2011 DP Tricks-14

15 get-itemproperty -path $OH PSPath : Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\Software\Oracle\KEY_Or adb11g_home1 PSParentPath : Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\Software\Oracle PSChildName : KEY_OraDb11g_home1 PSDrive : HKLM PSProvider : Microsoft.PowerShell.Core\Registry ORACLE_HOME : D:\oracle\product\11.2.0\dbhome_1 ORACLE_HOME_NAME : OraDb11g_home1 ORACLE_GROUP_NAME : Oracle - OraDb11g_home1 NLS_LANG : GERMAN_GERMANY.WE8MSWIN1252 ORACLE_BUNDLE_NAME : Enterprise OLEDB : D:\oracle\product\11.2.0\dbhome_1\oledb\mesg ORAMTS_CP_TRACE_LEVEL : 0.. ORACLE_SID :o11g MSHELP_TOOLS :D:\oracle\product\11.2.0\dbhome_1\MSHELP SQLPATH :D:\oracle\product\11.2.0\dbhome_1\dbs ORACLE_HOME_KEY : SOFTWARE\ORACLE\KEY_OraDb11g_home1 ORACLE_BASE : D:\oracle RDBMS_CONTROL :D:\oracle\product\11.2.0\dbhome_1\DATABASE RDBMS_ARCHIVE D:\oracle\product\11.2.0\dbhome_1\DATABASE\ARCHIVE ORA_O112_AUTOSTART : TRUE ORA_O112_SHUTDOWN : TRUE ORA_O112_SHUTDOWNTYPE : immediate ORA_O112_SHUTDOWN_TIMEOUT : 90 ORA_O11G_AUTOSTART : TRUE ORA_O11G_SHUTDOWN : TRUE ORA_O11G_SHUTDOWNTYPE : immediate ORA_O11G_SHUTDOWN_TIMEOUT : 90 DOAG 2011 DP Tricks-15

16 DOAG 2011 DP Tricks-16

17 Beispiel: Anzeige der Oracle Services die auf Automatisch stehen, aber nicht gestartet sind: Get-WmiObject Win32_Service Where-Object { $_.StartMode -eq 'Auto' -and $_.State -ne 'Running' -and $_.Name -match "Ora"} ft auto DOAG 2011 DP Tricks-17

18 Hinweis: Folgende Stati der Instanz bringen diese Meldungen zurück: REM Shutdown in Progress Fehler ORA-01089: immediate shutdown in progress - no operations are permitted REM Shutdown Mode: ORA-01034: ORACLE not available ORA-27101: shared memory realm does not exist REM Mount: ORA-01033: ORACLE initialization or shutdown in progress REM Open: ORA-28000: the account is locked DOAG 2011 DP Tricks-18

19 DOAG 2011 DP Tricks-19

20 DOAG 2011 DP Tricks-20

21 Die fünf Prozesse mit der größten Speicherauslastung anzeigen: get-process sort-object -property WS select-object -Last 5 DOAG 2011 DP Tricks-21

22 DOAG 2011 DP Tricks-22

23 Hinweis: Wenn Sie auch Attachments verschicken möchten: $msg = new-object Net.Mail.MailMessage $smtp = new-object Net.Mail.SmtpClient($smtpServer) $msg.from = "m.patzwahl@muniqsoft.de" $msg.to.add ("m.patzwahl@muniqsoft.de") $msg.subject = "Nachricht mit Anhängen" $msg.body = "Hier könnte Ihr Body stehen" # Alle Dateien des Ordners C:\temp\att anhängen foreach ($file in gci "c:\temp\att"){ $att = New-Object Net.Mail.Attachment($file.fullname) $msg.attachments.add($att) } $smtp.send($msg) DOAG 2011 DP Tricks-23

24 Beispielausgabe von: Get-Process select name,cpu,threads ft -auto DOAG 2011 DP Tricks-24

25 Beispielausgabe: #TYPE System.Diagnostics.EventLogEntry#System/Service Control Manager/ "EventID","MachineName","Data","Index","Category","CategoryNumb er","entrytype","message","source","replacementstrings","instan ceid","timegenerated","timewritten","username","site","containe r" "7000","goofymarco.muniqsoft.de","System.Byte[]","91701","(0)", "0","Error","Der Dienst ""CyberLink UDF Filesystem"" wurde aufgrund folgenden Fehlers nicht gestartet: %%1275","Service Control Manager","System.String[]"," "," :48:24"," :48:24",,, " DOAG 2011 DP Tricks-25

26 DOAG 2011 DP Tricks-26

27 DOAG 2011 DP Tricks-27

28 DOAG 2011 DP Tricks-28

29 DOAG 2011 DP Tricks-29

30 DOAG 2011 DP Tricks-30

31 DOAG 2011 DP Tricks-31

32 DOAG 2011 DP Tricks-32

33 DOAG 2011 DP Tricks-33

34 Hinweis: Eine eigene Zertifizierung der Skripten ist relativ aufwendig und würde den Rahmen dieses Vortrags sprengen. Im Internet existieren jedoch viele Beispiele zu diesem Thema. DOAG 2011 DP Tricks-34

35 DOAG 2011 DP Tricks-35

36 DOAG 2011 DP Tricks - 36

37 Alias CMD Alias CMD ac Add-Content gwmi Get-WmiObject asnp Add-PSSnapin iex Invoke-Expression clc Clear-Content ihy Invoke-History cli Clear-Item ii Invoke-Item clp Clear-ItemProperty ipmo Import-Module clv Clear-Variable iwmi Invoke-WmiMethod compare Compare-Object ipal Import-Alias cpi Copy-Item ipcsv Import-Csv cpp Copy-ItemProperty measure Measure-Object cvpa Convert-Path mi Move-Item dbp Disable-PSBreakpoint mp Move-ItemProperty diff Compare-Object nal New-Alias ebp Enable-PSBreakpoint ndr New-PSDrive epal Export-Alias ni New-Item epcsv Export-Csv nv New-Variable fc Format-Custom nmo New-Module fl Format-List oh Out-Host foreach ForEach-Object ogv Out-GridView % ForEach-Object ise powershell_ise.exe ft Format-Table rbp Remove-PSBreakpoint fw Format-Wide rdr Remove-PSDrive gal Get-Alias ri Remove-Item gbp Get-PSBreakpoint rni Rename-Item gc Get-Content rnp Rename-ItemProperty gci Get-ChildItem rp Remove-ItemProperty gcm Get-Command rmo Remove-Module gdr Get-PSDrive rsnp Remove-PSSnapin gcs Get-PSCallStack rv Remove-Variable ghy Get-History rwmi Remove-WmiObject gi Get-Item rvpa Resolve-Path gl Get-Location sal Set-Alias gm Get-Member sasv Start-Service gmo Get-Module sbp Set-PSBreakpoint gp Get-ItemProperty sc Set-Content gps Get-Process select Select-Object group Group-Object si Set-Item gsv Get-Service sl Set-Location gsnp Get-PSSnapin swmi Set-WmiInstance gu Get-Unique sleep Start-Sleep gv Get-Variable sort Sort-Object DOAG 2011 DP Tricks-37

38 Alias CMD Alias CMD sp Set-ItemProperty set Set-Variable saps Start-Process type Get-Content start Start-Process icm Invoke-Command spps Stop-Process clhy Clear-History spsv Stop-Service gjb Get-Job sv Set-Variable rcjb Receive-Job tee Tee-Object rjb Remove-Job where Where-Object sajb Start-Job? Where-Object spjb Stop-Job write Write-Output wjb Wait-Job cat Get-Content nsn New-PSSession cd Set-Location gsn Get-PSSession clear Clear-Host rsn Remove-PSSession cp Copy-Item ipsn Import-PSSession h Get-History epsn Export-PSSession history Get-History etsn Enter-PSSession kill Stop-Process exsn Exit-PSSession lp Out-Printer ls Get-ChildItem man help mount New-PSDrive md mkdir mv Move-Item popd Pop-Location ps Get-Process pushd Push-Location pwd Get-Location r Invoke-History rm Remove-Item rmdir Remove-Item echo Write-Output cls Clear-Host chdir Set-Location copy Copy-Item del Remove-Item dir Get-ChildItem erase Remove-Item move Move-Item rd Remove-Item ren Rename-Item DOAG 2011 DP Tricks-38

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

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

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

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

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

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

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

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

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

More information

Windows 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

# 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

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

mspsug-meeting-031213.txt

mspsug-meeting-031213.txt mspsug-meeting-031213.txt Id CommandLine -- ----------- 1 cd\ 2 cls 3 Get-Command -verb get -noun *event* 4 cls 5 Get-Command -verb get -noun *event* 6 help Get-EventLog 7 Get-EventLog -List 8 help Get-EventLog

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

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

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

Effective Windows PowerShell. Grok Windows PowerShell and Get More From It.

Effective Windows PowerShell. Grok Windows PowerShell and Get More From It. Effective Windows PowerShell Grok Windows PowerShell and Get More From It. Keith Hill Copyright 2007-2009 3/8/2009 Table of Contents Introduction... 1 Item 1: Four Cmdlets that are the Keys to Discovery

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

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

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

Unidesk 3.0 Script to Increase UEP Size for Persistent Desktops

Unidesk 3.0 Script to Increase UEP Size for Persistent Desktops Unidesk 3.0 Script to Increase UEP Size for Persistent Desktops Summary When creating a desktop the size of the Personalization Layer (UEP) is defined in GB for the desktop. There are two vhdx files that

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

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

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

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

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

Tools & Techniques for Remote Help Desk Support

Tools & Techniques for Remote Help Desk Support Tools & Techniques for Remote Help Desk Support 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

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

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

Command Line Crash Course For Unix

Command Line Crash Course For Unix Command Line Crash Course For Unix Controlling Your Computer From The Terminal Zed A. Shaw December 2011 Introduction How To Use This Course You cannot learn to do this from videos alone. You can learn

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

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

Building an Architecture Model 1. 1. Entwerfen Sie mit AxiomSys ein Kontextdiagramm, das folgendermaßen aussieht:

Building an Architecture Model 1. 1. Entwerfen Sie mit AxiomSys ein Kontextdiagramm, das folgendermaßen aussieht: Building an Architecture Model 1 1. Entwerfen Sie mit AxiomSys ein Kontextdiagramm, das folgendermaßen aussieht: Wie Ihnen aus der vergangenen Lehrveranstaltung bekannt ist, bedeuten Sterne neben den Bezeichnungen,

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

ISCSI Server Installation

ISCSI Server Installation ISCSI Server Installation 1. Create a virtual machine (VM). 2. Note wn the IP address of the created virtual machine 3. RDP the machine Click Start Menu -> All Programs -> Accessories -> Remote Desktop

More information

Resco Mobile CRM Woodford (Rules Guide) Document version 6.2.0.0

Resco Mobile CRM Woodford (Rules Guide) Document version 6.2.0.0 Resco Mobile CRM Woodford (Rules Guide) Document version 6.2.0.0 Resco.net 1 Form Rules... 2 2 Steps... 2 2.1 Function Step... 2 2.1.1 Selecting Variable, Use of the Property Selector... 3 2.1.2 Function

More information

LECTURE-7. Introduction to DOS. Introduction to UNIX/LINUX OS. Introduction to Windows. Topics:

LECTURE-7. Introduction to DOS. Introduction to UNIX/LINUX OS. Introduction to Windows. Topics: Topics: LECTURE-7 Introduction to DOS. Introduction to UNIX/LINUX OS. Introduction to Windows. BASIC INTRODUCTION TO DOS OPERATING SYSTEM DISK OPERATING SYSTEM (DOS) In the 1980s or early 1990s, the operating

More information

Linux & Docker auf Azure

Linux & Docker auf Azure Linux & Docker auf Azure Linux in der Azure Cloud Web Mail Twitter Rainer Stropek software architects gmbh http://www.timecockpit.com rainer@timecockpit.com @rstropek Saves the day. Your Host Rainer Stropek

More information

VirtualSchool Office365 Lizenzen zuweisen Feb 2013

VirtualSchool Office365 Lizenzen zuweisen Feb 2013 Lieber Wolfgang! Dieser Newsletter beschreibt notwendige Schritte, die Du nach der Migration auf Office365 durchführen musst. Damit Du Office365 betreiben kannst, musst Du kostenlose Lizenzen erwerben

More information

PowerShell Tutorial. Eigil Obrestad and Erik Hjelmås. August 18, 2015

PowerShell Tutorial. Eigil Obrestad and Erik Hjelmås. August 18, 2015 PowerShell Tutorial Eigil Obrestad and Erik Hjelmås August 18, 2015 1 2 (OUSTERHOUT, J., Scripting: Higher-Level Programming for the 21st Century, IEEE Computer, Vol. 31, No. 3, March 1998, pp. 23-30.)

More information

Microsoft Nano Server «Tuva» Rinon Belegu

Microsoft Nano Server «Tuva» Rinon Belegu 1 Microsoft Nano Server «Tuva» Rinon Belegu Partner: 2 Agenda Begrüssung Vorstellung Referent Content F&A Weiterführende Kurse 3 Vorstellung Referent Rinon Belegu Microsoft Certified Trainer (AWS Technical

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

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

An A-Z Index of the Apple OS X command line (TERMINAL) The tcsh command shell of Darwin (the open source core of OSX)

An A-Z Index of the Apple OS X command line (TERMINAL) The tcsh command shell of Darwin (the open source core of OSX) An A-Z Index of the Apple OS X command line (TERMINAL) The tcsh command shell of Darwin (the open source core of OSX) alias alloc awk Create an alias List used and free memory Find and Replace text within

More information

Helfen Sie Apple, Produkte und Dienste zu verbessern, indem Sie Diagnose- und Nutzungsdaten über icloud senden.

Helfen Sie Apple, Produkte und Dienste zu verbessern, indem Sie Diagnose- und Nutzungsdaten über icloud senden. Helfen Sie Apple, Produkte und Dienste zu verbessern, indem Sie Diagnose- und Nutzungsdaten über icloud senden. Durch das Versenden dieser Mitteilung, erklären Sie sich einverstanden, dass Apple diese

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

Brauche neues Power Supply

Brauche neues Power Supply email vom DB-Server: Brauche neues Power Supply HW-Überwachung mit Enterprise Manager und Oracle Auto Service Request Elke Freymann Datacenter Architect Systems Sales Consulting Oracle Deutschland Copyright

More information

REST API Getting Started Guide

REST API Getting Started Guide REST API Getting Started Guide vcommander version 5.2 REST API version 2.3 P a g e 1 Contents Introduction... 3 Version compatibility... 3 Changes in this release... 3 REST API capabilities... 3 Cloud

More information

Checklist Use this checklist to find out how much English you already know. Grundstufe 1 (Common European Framework: A1 Level)

Checklist Use this checklist to find out how much English you already know. Grundstufe 1 (Common European Framework: A1 Level) Der XL Test: Was können Sie schon? Schätzen Sie Ihre Sprachkenntnisse selbst ein! Sprache: Englisch Mit der folgenden e haben Sie die Möglichkeit, Ihre Fremdsprachenkenntnisse selbst einzuschätzen. Die

More information

Thirty Useful Unix Commands

Thirty Useful Unix Commands Leaflet U5 Thirty Useful Unix Commands Last revised April 1997 This leaflet contains basic information on thirty of the most frequently used Unix Commands. It is intended for Unix beginners who need a

More information

Clouds. Windows Server 2012 Release Candidate. Server Management

Clouds. Windows Server 2012 Release Candidate. Server Management Clouds IT Windows Server 2012 Release Candidate Server Management Contents Introduction... 4 Multi-server Management and Feature Deployment with Server Manager... 5 Technical description... 5 Multi-server

More information

CS 103 Lab Linux and Virtual Machines

CS 103 Lab Linux and Virtual Machines 1 Introduction In this lab you will login to your Linux VM and write your first C/C++ program, compile it, and then execute it. 2 What you will learn In this lab you will learn the basic commands and navigation

More information

Linux command line. An introduction to the Linux command line for genomics. Susan Fairley

Linux command line. An introduction to the Linux command line for genomics. Susan Fairley Linux command line An introduction to the Linux command line for genomics Susan Fairley Aims Introduce the command line Provide an awareness of basic functionality Illustrate with some examples Provide

More information

Tutorial 0A Programming on the command line

Tutorial 0A Programming on the command line Tutorial 0A Programming on the command line Operating systems User Software Program 1 Program 2 Program n Operating System Hardware CPU Memory Disk Screen Keyboard Mouse 2 Operating systems Microsoft Apple

More information

Is Cloud relevant for SOA? 2014-06-12 - Corsin Decurtins

Is Cloud relevant for SOA? 2014-06-12 - Corsin Decurtins Is Cloud relevant for SOA? 2014-06-12 - Corsin Decurtins Abstract SOA (Service-Orientierte Architektur) war vor einigen Jahren ein absolutes Hype- Thema in Unternehmen. Mittlerweile ist es aber sehr viel

More information

An Introduction to the Linux Command Shell For Beginners

An Introduction to the Linux Command Shell For Beginners An Introduction to the Linux Command Shell For Beginners Presented by: Victor Gedris In Co-Operation With: The Ottawa Canada Linux Users Group and ExitCertified Copyright and Redistribution This manual

More information

Command Line - Part 1

Command Line - Part 1 Command Line - Part 1 STAT 133 Gaston Sanchez Department of Statistics, UC Berkeley gastonsanchez.com github.com/gastonstat Course web: gastonsanchez.com/teaching/stat133 GUIs 2 Graphical User Interfaces

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

I-Q SCHACHT & KOLLEGEN QUALITÄTSKONSTRUKTION GMBH ISO 26262:2011. Liste der Work Products aus der Norm

I-Q SCHACHT & KOLLEGEN QUALITÄTSKONSTRUKTION GMBH ISO 26262:2011. Liste der Work Products aus der Norm I-Q SCHACHT & KOLLEGEN QUALITÄTSKONSTRUKTION GMBH ISO 26262:2011 Liste der Work Products aus der Norm 1. Work Products in der ISO 26262:2011 1.1 Liste ISO-26262:2011, part 1 - Vocabulary no relevant work

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

LEARNING AGREEMENT FOR STUDIES

LEARNING AGREEMENT FOR STUDIES LEARNING AGREEMENT FOR STUDIES The Student Last name (s) First name (s) Date of birth Nationality 1 Sex [M/F] Academic year 20../20.. Study cycle EQF level 6 Subject area, Code Phone E-mail 0421 The Sending

More information

SPICE auf der Überholspur. Vergleich von ISO (TR) 15504 und Automotive SPICE

SPICE auf der Überholspur. Vergleich von ISO (TR) 15504 und Automotive SPICE SPICE auf der Überholspur Vergleich von ISO (TR) 15504 und Automotive SPICE Historie Software Process Improvement and Capability determination 1994 1995 ISO 15504 Draft SPICE wird als Projekt der ISO zur

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

Automating Microsoft SQL Server 2012 Deployment and Storage Provisioning

Automating Microsoft SQL Server 2012 Deployment and Storage Provisioning Technical Report Automating Microsoft SQL Server 2012 Deployment and Storage Provisioning Microsoft Solutions Integration Group, NetApp September 2012 TR-4105 TABLE OF CONTENTS 1 Automating Microsoft SQL

More information

Command-Line Operations : The Shell. Don't fear the command line...

Command-Line Operations : The Shell. Don't fear the command line... Command-Line Operations : The Shell Don't fear the command line... Shell Graphical User Interface (GUI) Graphical User Interface : displays to interact with the computer - Open and manipulate files and

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

A CIP catalogue record for this book is available from the British Library.

A CIP catalogue record for this book is available from the British Library. PUBLISHED BY Microsoft Press A Division of Microsoft Corporation One Microsoft Way Redmond, Washington 98052-6399 Copyright 2007 by Ed Wilson All rights reserved. No part of the contents of this book may

More information

Server Manageability and Automation

Server Manageability and Automation Server Manageability and Automation Windows Server 2012 Table of contents Introduction... 5 Standards-based approach to management in Windows Server 2012... 6 Technical description... 6 Standard API improvements...

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 Server 2008- und Windows Vista-Gruppenrichtlinien

Windows Server 2008- und Windows Vista-Gruppenrichtlinien Windows Server 2008- und Windows Vista-Gruppenrichtlinien Download: Windows Server 2008- und Windows Vista-Gruppenrichtlinien PDF ebook Windows Server 2008- und Windows Vista-Gruppenrichtlinien PDF - Are

More information

Software / FileMaker / Plug-Ins Mailit 6 for FileMaker 10-13

Software / FileMaker / Plug-Ins Mailit 6 for FileMaker 10-13 Software / FileMaker / Plug-Ins Mailit 6 for FileMaker 10-13 Seite 1 / 5 Mailit 6 for FileMaker 10-13 The Ultimate Email Plug-In Integrate full email capability into your FileMaker 10-13 solutions with

More information

LSN 10 Linux Overview

LSN 10 Linux Overview LSN 10 Linux Overview ECT362 Operating Systems Department of Engineering Technology LSN 10 Linux Overview Linux Contemporary open source implementation of UNIX available for free on the Internet Introduced

More information

Programming for GCSE Topic H: Operating Systems

Programming for GCSE Topic H: Operating Systems Programming for GCSE Topic H: Operating Systems William Marsh School of Electronic Engineering and Computer Science Queen Mary University of London Aims Introduce Operating Systems Core concepts Processes

More information

J2EE-Application Server

J2EE-Application Server J2EE-Application Server (inkl windows-8) Installation-Guide F:\_Daten\Hochschule Zurich\Web-Technologie\ApplicationServerSetUp.docx Last Update: 19.3.2014, Walter Rothlin Seite 1 Table of Contents Java

More information

www.infoplc.net Application example AC500 Scalable PLC for Individual Automation Communication between AC500 and KNX network abb

www.infoplc.net Application example AC500 Scalable PLC for Individual Automation Communication between AC500 and KNX network abb Application example www.infoplc.net AC500 Scalable PLC for Individual Automation Communication between AC500 and KNX network abb Content www.infoplc.net 1 Disclaimer...2 1.1 For customers domiciled outside

More information

Upgrading Your Skills to MCSA Windows Server 2012 MOC 20417

Upgrading Your Skills to MCSA Windows Server 2012 MOC 20417 Upgrading Your Skills to MCSA Windows Server 2012 MOC 20417 In dieser Schulung lernen Sie neue Features und Funktionalitäten in Windows Server 2012 in Bezug auf das Management, die Netzwerkinfrastruktur,

More information

Upgrade-Preisliste. Upgrade Price List

Upgrade-Preisliste. Upgrade Price List Upgrade-Preisliste Mit Firmware Features With list of firmware features Stand/As at: 10.09.2014 Änderungen und Irrtümer vorbehalten. This document is subject to changes. copyright: 2014 by NovaTec Kommunikationstechnik

More information

Symantec Backup Exec (TM) 13 Installation Log

Symantec Backup Exec (TM) 13 Installation Log v Symantec Backup Exec (TM) 13 Installation Log 05-26-2010,15:07:12 : Explorer exists. Launching UI. 05-26-2010,15:07:14 : Executing managed _Setup: 05-26-2010,15:07:14 : C:\Dokumente und orms_multilingual_dvd\be\winnt\install\be32\install\_setup.exe

More information

cmshell for SAP CommandLets for SAP GUIScripting SAP GUI Scripting connmove GmbH Version: 0.7 Seite 1 von 15

cmshell for SAP CommandLets for SAP GUIScripting SAP GUI Scripting connmove GmbH Version: 0.7 Seite 1 von 15 cmshell for SAP SAP GUI Scripting CommandLets for SAP GUIScripting connmove GmbH Version: 0.7 Seite 1 von 15 Inhalt Requirements... 3 Record a script... 4 Start at SAP Easy Access menu... 4 Choose script

More information

Learn Windows PowerShell in a Month of Lunches

Learn Windows PowerShell in a Month of Lunches Learn Windows PowerShell in a Month of Lunches DON JONES MANNING Shelter Island For online information and ordering of this and other Manning books, please visit www.manning.com. The publisher offers discounts

More information

Migrating/Upgrading to Oracle Version 8.1.5: UNIX (BC-DB- ORA

Migrating/Upgrading to Oracle Version 8.1.5: UNIX (BC-DB- ORA Migrating/Upgrading to Oracle Version 8.1.5: UNIX (BC-DB- ORA HELP.BCDBORA Release 4.6C Migrating/Upgrading to Oracle Version 8.1.5: UNIX (BC-DB-ORA SAP AG Copyright Copyright 2001 SAP AG. Alle Rechte

More information

Automating Tasks Using PowerShell Scripting

Automating Tasks Using PowerShell Scripting CHAPTER 21 Automating Tasks Using PowerShell Scripting IN THIS CHAPTER. Understanding Shells. Introduction to PowerShell. Understanding the PowerShell Basics. Using Windows PowerShell Shells are a necessity

More information

Linux System Administration on Red Hat

Linux System Administration on Red Hat Linux System Administration on Red Hat Kenneth Ingham September 29, 2009 1 Course overview This class is for people who are familiar with Linux or Unix systems as a user (i.e., they know file manipulation,

More information

1.- L a m e j o r o p c ió n e s c l o na r e l d i s co ( s e e x p li c a r á d es p u é s ).

1.- L a m e j o r o p c ió n e s c l o na r e l d i s co ( s e e x p li c a r á d es p u é s ). PROCEDIMIENTO DE RECUPERACION Y COPIAS DE SEGURIDAD DEL CORTAFUEGOS LINUX P ar a p od e r re c u p e ra r nu e s t r o c o rt a f u e go s an t e un d es a s t r e ( r ot u r a d e l di s c o o d e l a

More information

CommVault Simpana 7.0 Software Suite. und ORACLE Momentaufnahme. Robert Romanski Channel SE rromanski@commvault.com

CommVault Simpana 7.0 Software Suite. und ORACLE Momentaufnahme. Robert Romanski Channel SE rromanski@commvault.com CommVault Simpana 7.0 Software Suite und ORACLE Momentaufnahme Robert Romanski Channel SE rromanski@commvault.com CommVaults Geschichte 1988 1996 2000 2002 2006 2007 Gegründet als Business Unit von AT&T

More information

2012-06-18 23:09:13.387626 [scheduler thread(5)]: AdvancedCardAllocation.GetAvailableCardsForChannel took 7 msec

2012-06-18 23:09:13.387626 [scheduler thread(5)]: AdvancedCardAllocation.GetAvailableCardsForChannel took 7 msec card 2 = FireDTV, card 3 = KNC1 die gelben Zeilen zeigen: Es sind beide Karten frei und der Scheduler wählt Karte 2 Erfolgreiches tunen einer Sendung auf Karte 2 / FireDTV 3SAT Made in Munich 18.06.2012

More information

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

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

More information

Windows 7 Portable Command Guide: MOTS 70-680, and MCITP 70-685

Windows 7 Portable Command Guide: MOTS 70-680, and MCITP 70-685 Windows 7 Portable Command Guide: MOTS 70-680, and MCITP 70-685 and 70-686 Darril Gibson 800 East 96th Street Indianapolis, Indiana 46240 USA Table of Contents INTRODUCTION 1 PART I: Command Prompt Basics

More information

Search Engines Chapter 2 Architecture. 14.4.2011 Felix Naumann

Search Engines Chapter 2 Architecture. 14.4.2011 Felix Naumann Search Engines Chapter 2 Architecture 14.4.2011 Felix Naumann Overview 2 Basic Building Blocks Indexing Text Acquisition Text Transformation Index Creation Querying User Interaction Ranking Evaluation

More information

Information Systems 2

Information Systems 2 Information Systems 2 Prof. Dr. Dr. L. Schmidt-Thieme MSc. André Busche Übung 9 0. Allerlei 1. Übung 2. Hands on some things 2.1 Saxon 2.2 Corba 28.06.10 2/ 0. Allerlei 1. Übung 2. Hands on some things

More information

VB.NET - DATE & TIME

VB.NET - DATE & TIME VB.NET - DATE & TIME http://www.tutorialspoint.com/vb.net/vb.net_date_time.htm Copyright tutorialspoint.com Most of the softwares you write need implementing some form of date functions returning current

More information

NetWorker - Allgemein Tip 400, Seite 2/7. 31.10.08 / cr

NetWorker - Allgemein Tip 400, Seite 2/7. 31.10.08 / cr NetWorker - Allgemein Tip 400, Seite 1/7 NetWorker s Laufwerks-Parameter Immer wenn Sie ein NetWorker Laufwerk einrichten, konfigurieren Sie mit der Auswahl des Laufwerkstyps indirekt auch diese Parameter:

More information

Fred Hantelmann LINUX. Start-up Guide. A self-contained introduction. With 57 Figures. Springer

Fred Hantelmann LINUX. Start-up Guide. A self-contained introduction. With 57 Figures. Springer Fred Hantelmann LINUX Start-up Guide A self-contained introduction With 57 Figures Springer Contents Contents Introduction 1 1.1 Linux Versus Unix 2 1.2 Kernel Architecture 3 1.3 Guide 5 1.4 Typographical

More information

5 HDFS - Hadoop Distributed System

5 HDFS - Hadoop Distributed System 5 HDFS - Hadoop Distributed System 5.1 Definition and Remarks HDFS is a file system designed for storing very large files with streaming data access patterns running on clusters of commoditive hardware.

More information

Windows PowerShell: A First L k. Charlotte McGary

Windows PowerShell: A First L k. Charlotte McGary Windows PowerShell: A First L k Charlotte McGary Copyright 2007 Charlotte McGary. All Rights Reserved. No portion of this book may be reproduced by any means whatsoever without the expressed written permission

More information

USEFUL UNIX COMMANDS

USEFUL UNIX COMMANDS cancel cat file USEFUL UNIX COMMANDS cancel print requested with lp Display the file cat file1 file2 > files Combine file1 and file2 into files cat file1 >> file2 chgrp [options] newgroup files Append

More information

Konnte die Datei Hotsync.log nicht öffnen. Folgender Fehler wurde zurückgegeben: File Not Found

Konnte die Datei Hotsync.log nicht öffnen. Folgender Fehler wurde zurückgegeben: File Not Found User Information Username: Lisa Directory: C:\Programme\Palm\Lisa\ ==== /* BEGIN HOTSYNC.LOG FILE ****************************************************** Konnte die Datei Hotsync.log nicht öffnen. Folgender

More information

OS9 UNIX help man chd cd del rm copy cp makdir mkdir OS9 is case sensitive!! attr chmod deldir rmdir pd pwd list more

OS9 UNIX help man chd cd del rm copy cp makdir mkdir OS9 is case sensitive!! attr chmod deldir rmdir pd pwd list more INFOS OS9 OS9 COMMAND WHAT IT DOES dir list files copy copy files list print file content attr shows and change access privileges ( in OS9 all users of the same group hav same privileges ) : from right

More information

Windows Server 2012 R2 Storage Infrastructure

Windows Server 2012 R2 Storage Infrastructure Windows Server 2012 R2 Storage Infrastructure Windows Server 2012 R2 Hands-on lab Windows Server 2012 R2 includes new storage features which allow you to create new storage-optimized file servers using

More information

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

More information