Using WMI Scripting. W indows Management Instrumentation (WMI) is the. for System Administration

Size: px
Start display at page:

Download "Using WMI Scripting. W indows Management Instrumentation (WMI) is the. for System Administration"

Transcription

1 Using WMI Scripting for System Administration Windows Management Instrumentation (WMI), which offers administrators a rich management scripting tool set, is an integral part of the Microsoft Windows family of operating systems which includes Microsoft Windows 2000, Windows XP, and Windows Server This article introduces WMI, explains basic scripting techniques, and provides examples for automating systems management processes using Dell OpenManage tools. BY SUDHIR SHETTY W indows Management Instrumentation (WMI) is the underlying management technology for Microsoft Windows operating systems. Based on industry standards, WMI helps enable consistent, uniform management control and monitoring of systems throughout an enterprise. WMI allows system administrators to query, change, and monitor configuration settings on desktop and server systems, applications, networks, and other components of the IT infrastructure. System administrators can create a wide range of systems management and monitoring scripts that work with WMI using the WMI scripting library. Overview of WMI architecture Figure 1 shows the three primary layers of the WMI architecture: WMI data providers, WMI management infrastructure, and WMI consumers. WMI data providers The data providers retrieve information from managed resources. A managed resource is a logical or physical component that can be accessed and managed using WMI. Examples of standard Windows resources that can be managed using WMI include computer systems, disks, peripheral devices, event logs, files, folders, file systems, networking components, operating system subsystems, performance counters, printers, processes, registry settings, security, services, Microsoft Active Directory directory service, Windows Installer, and Windows Driver Model device drivers. WMI data providers access the managed resources using the appropriate application programming interfaces (APIs) and expose the data to the WMI infrastructure using a standardsbased, object-oriented data model. The operating system is bundled with standard providers for accessing standard operating-system resources such as processes, registry settings, and so forth. In addition, WMI enables software developers to add and integrate additional providers that expose data and management functionality unique to their products. For example, Dell provides a Common Information Model (CIM) provider, which exposes additional asset information through WMI. The Dell 66

2 WMI consumers WMI script about the C: drive, D: drive, and so on, can be retrieved by querying the CIMOM. Attributes, or properties, of this class, such as WMI scripting library FreeSpace, Name, and Size, can be queried remotely. Because the operational state of most resources changes frequently, infor- WMI management infrastructure CIMOM (WMI service) CIM repository mation is typically read on demand to ensure that up-to-date information is retrieved. CIM classes are organized into namespaces. Each namespace WMI data providers WMI providers contains a logical group of related classes representing a specific area of management. WMI consumers Managed resources or managed objects (applications, devices, systems) WMI consumers are management applications or scripts that access and control management information available through the WMI infrastructure. Figure 1. Three primary layers of the WMI architecture OpenManage Server Administrator CIM Reference Guide contains additional information on the data model supported by this provider. The documentation is available online at WMI management infrastructure The WMI infrastructure consists of the Common Information Model Object Manager (CIMOM), which manages the interaction between consumers and data providers. All WMI requests and data flow through the CIMOM. The WMI service acts as the CIMOM and is similar to other operating system services. For example, it can be stopped and started using the following commands: net stop winmgmt net start winmgmt Introduction to scripting Windows scripting provides a rich environment in which administrators can develop scripts. Scripts can access Component Object Model (COM) objects that support automation or standard access methodologies. This capability enables scripts to access COM-based technologies, such as WMI or Active Directory Service Interfaces (ADSI), to manage Windows subsystems. The examples in this article use VBScript as the scripting language because of its widespread usage. Other scripting technologies (for example, Microsoft JScript development software) that support COM automation can also be used to access WMI objects. Available on Windows XP and Windows Server 2003 is a command-line tool for accessing WMI information, called WMIC (Windows Management Instrumentation Command-line). Figure 2 provides a simple example of a WMI script, which lists the logical disk information for the local computer. To invoke strcomputer = "." Management applications, administrative tools, and scripts make requests to the CIMOM to retrieve data, subscribe to events, or perform managementrelated tasks. The CIMOM retrieves the provider and "\root\cimv2") Set coldisks = objwmiservice.execquery _ ("SELECT * FROM Win32_LogicalDisk") class information to service the request from the CIM repository. The CIMOM uses the information obtained Const CONVERT_TO_MB = from the CIM repository to pass the consumer request For each objdisk in coldisks to the appropriate WMI provider. WScript.Echo "Name:" & objdisk.name The CIM repository holds the schema, or object WScript.Echo "Size(MB):" & Int(objDisk.Size / CONVERT_TO_MB) repository, that models the managed environment. WScript.Echo "Free Space (MB):" & _ CIM uses a rich object-oriented data model and the Int(objDisk.FreeSpace /CONVERT_TO_MB) notion of classes to represent information about managed resources. For example, a Win32_LogicalDisk Next class represents logical disk information on a computer. Instances of this class, such as information Figure 2. Sample WMI script for listing logical disk information POWER SOLUTIONS 67

3 the script, save the listing into a file called disk.vbs and run the following command: C:> cscript disk.vbs Cscript.exe is a console-based scripting host that is packaged with the Windows Script Host (WSH) and is used for running scripts. Note that the script in Figure 2 can be adapted to access a variety of information about managed resources. Information about managed resources can be viewed by downloading WMI administrative tools from FamilyId=6430F DB-8CC5-F2ABDC3ED314&displaylang=en. CIM Studio, which is bundled in the WMI administrative tool set, lets administrators view class information in the CIM repository. For other sample scripts that perform a variety of useful system administration tasks, visit Dell Power Solutions online at Figure 3 lists additional useful tasks that system administrators can script. Scripting to execute processes on remote Dell systems Administrators can write scripts to execute processes on remote systems, a technique that can be used in many ways to manage a Windows entity Description WMI-scriptable usage model Event logs Provide a repository of activities on Retrieve and query event logs a computer Configure event log properties Back up and clear event logs Printers Manage printers in the enterprise Monitor printers and print jobs Manage printer connections on client systems Registry Contains configuration settings for Create new registry entries the operating system, applications, Delete and update registry entries and services under Windows Back up the registry Files/folders Contain valuable enterprise data Manage files and folders (create, delete, and update) Enumerate files Manage shares Monitor the file system Disks and file Manage disks and file systems to Manage disk partitions system ensure continued access to data Manage logical disk drives Manage disk space Active Directory Manage user account information in Create user accounts users Active Directory Manage user accounts Delete user accounts Computer asset Contains an inventory of hardware Install, upgrade, and remove software information information, including the operating Retrieve system information, such as system and other software installed operating system, memory, and on the remote computer disk space Manage computer startup and recovery settings Computer roles Manage computers and computer Create, manage, and delete computer roles in Active Directory accounts in Active Directory Manage the roles assigned to computers Processes Manage running instances of an Monitor processes application or an executable file Create and terminate processes Enumerate additional process properties Figure 3. Examples of scriptable administrative tasks Based on industry network of Dell systems in the enterprise. Examples in this section illustrate the remote execu- standards, WMI helps tion of Dell OpenManage Server enable consistent, uniform Administrator command-line interface (CLI) commands on a Dell management control and PowerEdge server. To remotely execute other processes on target monitoring of systems nodes, administrators can customize these examples. A complete throughout an enterprise. command reference can be found in the Dell OpenManage Server Administrator Command-Line Interface User s Guide, which is available on the documentation CD that ships with every PowerEdge server or online at Figure 4 shows an example script that executes a process on a remote system. To invoke the script on a remote server, called MachineA in this example, save the preceding listing into a file called remote.vbs and run the following command: C:> cscript remote.vbs MachineA "omreport system esmlog outa c:\%computername%_esmlog.txt" The script in Figure 4 initiates the remote execution of the process and does not wait for the process to complete. Executing the script exports the Embedded Server Management (ESM) log into a text file on the remote target. This capability offers a rich set of possibilities for the remote scripting of PowerEdge Servers using Server Administrator CLI commands, including: omconfig: Configures values using the CLI. Administrators can use specific values for warning thresholds on components or prescribe what action a system should take when a certain warning or failure event occurs. Administrators can also use the omconfig command to assign specific values to a system s asset information parameters, such as the purchase price of the system, the system s asset tag, or the system s location. omdiag: Runs diagnostic tests against system hardware to isolate problems. omhelp: Displays short help text for CLI commands. omreport: Produces reports of a system s management information. omupdate: Installs the latest update packages for the system s BIOS, firmware, and drivers. Administrators can run sequences of these commands using a batch file on a remote managed node. For a sample script that executes a batch file on a remote node, visit Dell Power Solutions online at 68

4 strcomputer = WScript.Arguments.Item(0) strcommand = WScript.Arguments.Item(1) Wizard on the management station to perform the update during off-peak hours. "\root\cimv2:win32_process") errreturn = objwmiservice.create(strcommand,null,null,intprocessid) if errreturn = 0 Then Wscript.Echo strcommand & " was started with a process ID of " _ & intprocessid & "." Else Wscript.Echo strcommand & " could not be started due to error " & _ errreturn & "." End If Figure 4. Sample WMI script for executing a remote process Performing a remote software update under Dell OpenManage Administrators can perform a remote software update for BIOS, firmware, and drivers by using the omupdate command or by using a Dell Update Package. omupdate CLI command. To execute the omupdate command, an administrator would invoke the following: omupdate biosupdate path="\\network_share\file_name " This sample command refers to the network share where the update file resides. In the absence of a network share, administrators can copy the file to a temporary directory on the local system before performing the update. Dell Update Package. Another option is to copy the Dell Update Package, which is a self-contained.exe file, onto the remote system. The.exe file can be directly executed on the remote node by passing its command-line arguments for a silent installation of the package and rebooting the system, if necessary. The WMI script listed in Figure 5 illustrates a remote software update that passes in the computer name and the name of the Dell Update Package. In the script, note that the Dell Update Package is invoked with the /s /r option to perform a silent update and reboot of the system, if necessary. For a scheduled update, administrators can use the Windows Scheduled Task Security considerations WMI scripts run in the security context of the administrator running the script. To run scripts on a remote computer, a user needs administrative access on the remote system, thus helping to prevent malicious individuals from running destructive scripts on a remote server. Remote WMI scripting leverages Distributed COM (DCOM) for interacting with the WMI service running on the remote system. The scripts in this article set the impersonation level to impersonate. This setting implies that the WMI service uses the administrator s security context to perform the requested operation. If the administrator s security credentials are not adequate, errors such as Access Denied will occur when running the script. WMI provides a rich security infrastructure that can be configured on a per-namespace basis. By default, the administrator s group has full control of WMI on both local and remote computers, and users in other groups do not have remote access to the computers. To view a computer s security settings, invoke wmimgmt.msc from the command prompt, view the properties of the root node, and look strcomputer = WScript.Arguments.Item(0) strdupfile = WScript.Arguments.Item(1) '* First copy the Dell Update Package to the remote system Set objfso=createobject("scripting.filesystemobject") ObjFSO.CopyFile strdupfile, "\\" & strcomputer & "\C$\tmp\" & _ strdupfile '* Launch the process on the remote system "\root\cimv2:win32_process") strcommand = "C:\tmp\" & strdupfile & " /s /r" errreturn = objwmiservice.create(strcommand,null,null,intprocessid) if errreturn = 0 Then Wscript.Echo strcommand & " was started with a process ID of " _ & intprocessid & "." Else Wscript.Echo strcommand & " could not be started due to error " & _ errreturn & "." End If Figure 5. Sample WMI script for a remote software update POWER SOLUTIONS 69

5 PASSING ARGUMENTS THROUGH A TEXT FILE Several scripts in this article involve passing arguments through the command line. An alternative is to pass arguments as a text file. For example, to perform a software update on a set of PowerEdge 2650 servers, administrators can export an external database to list several servers in a text file, such as Server1, Server2, and Server3. This text file can then be passed as a command-line argument to the example script listed in Figure A. Set objargs = Wscript.Arguments Const ForReading = 1 Set objdictionary = CreateObject("Scripting.Dictionary") Set objfso = CreateObject("Scripting.FileSystemObject") Set objtextfile = objfso.opentextfile(objargs(0), ForReading) '* Read the file which contains a list of machines, one per line I = 0 Do While objtextfile.atendofstream <> True StrNextLine = objtextfile.readline objdictionary.add I, strnextline I = I + 1 Loop '* For each machine, retrieve the number of services running on that machine For Each objitem in objdictionary strcomputer = objdictionary.item(objitem) Wscript.Echo "Accessing remote machine" & strcomputer "\root\cimv2") Set colservices = objwmiservice.execquery _ ("SELECT * FROM Win32_Service") Wscript.Echo strcomputer, colservices.count Next Figure A. Sample WMI script for reading arguments from a text file at the security tab of the dialog box. Administrators can alter security settings at the namespace level and grant different permissions (remote access, method execution, or write) to different sets of users (domain or local). wmisdk/wmi/scripting_access_to_wmi.asp) and the book Microsoft Windows 2000 Scripting Guide by the Microsoft Windows Resource Kit Scripting Team provide additional valuable information about WMI and scripting. A powerful tool for performing administrative tasks WMI scripting is designed to provide a powerful mechanism that helps system administrators to perform remote administration tasks. The techniques presented in this article help provide an introduction to the power of WMI scripting. The Microsoft Web page Scripting Access to WMI ( Sudhir Shetty (sudhir_shetty@dell.com) is a member of the Enablement Technologies team at Dell, working on systems management console solutions. He has more than 10 years of experience in designing and developing software components for user interfaces; database access; and networking in application areas such as systems management, systems prototyping and simulation, and tiered, distributed computing. Sudhir has an M.S. in Computer Science from The University of Texas at Austin. 70

Proactively Managing Servers with Dell KACE and Open Manage Essentials

Proactively Managing Servers with Dell KACE and Open Manage Essentials Proactively Managing Servers with Dell KACE and Open Manage Essentials A Dell Technical White Paper Dell KACE Dell Open Manage Essentials THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES ONLY, AND MAY CONTAIN

More information

DELL OPENMANAGE CLIENT INSTRUMENTATION

DELL OPENMANAGE CLIENT INSTRUMENTATION Dell, Inc. DELL OPENMANAGE CLIENT INSTRUMENTATION Integration for IT Professionals Nathan Martell Software Engineer, Product Group Table of Contents Executive Summary... 4 CIM and WMI Technology Overview...

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

DELL. Unified Server Configurator: IT and Systems Management Overview. A Dell Technical White Paper

DELL. Unified Server Configurator: IT and Systems Management Overview. A Dell Technical White Paper DELL A Dell Technical White Paper Unified Server Configurator: IT and Systems Management Overview By Shelli Allgood, Anand Narayanan, Hai Phung, Pritesh Prabhu and Ganesh Viswanathan THIS WHITE PAPER IS

More information

Nagios XI Monitoring Windows Using WMI

Nagios XI Monitoring Windows Using WMI Purpose The Industry Standard in IT Infrastructure Monitoring This document describes how to monitor Windows machines with Nagios XI using WMI. WMI (Windows Management Instrumentation) allows for agentless

More information

Microsoft Operations Manager 2005

Microsoft Operations Manager 2005 Managing Microsoft SQL Server 2005 with Microsoft Operations Manager 2005 in a Dell Scalable Enterprise Architecture The Microsoft Operations Manager (MOM) 2005 tool enables enterprise IT organizations

More information

Administrator s Guide

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

More information

HP Server Management Packs for Microsoft System Center Essentials User Guide

HP Server Management Packs for Microsoft System Center Essentials User Guide HP Server Management Packs for Microsoft System Center Essentials User Guide Part Number 460344-001 September 2007 (First Edition) Copyright 2007 Hewlett-Packard Development Company, L.P. The information

More information

Using HP System Software Manager for the mass deployment of software updates to client PCs

Using HP System Software Manager for the mass deployment of software updates to client PCs Using HP System Software Manager for the mass deployment of software updates to client PCs Introduction... 2 HP manageability solutions... 2 SSM overview... 3 Software updates... 3 Why not SSM-enabled?...

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

IBM WebSphere Application Server Version 7.0

IBM WebSphere Application Server Version 7.0 IBM WebSphere Application Server Version 7.0 Centralized Installation Manager for IBM WebSphere Application Server Network Deployment Version 7.0 Note: Before using this information, be sure to read the

More information

Silect Software s MP Author

Silect Software s MP Author Silect MP Author for Microsoft System Center Operations Manager Silect Software s MP Author User Guide September 2, 2015 Disclaimer The information in this document is furnished for informational use only,

More information

High Availability for Microsoft Virtual Server

High Availability for Microsoft Virtual Server High Availability for Microsoft Virtual Server High Availability for Microsoft Virtual Server Revision 1.1.0 published January 2005, GeoCluster, and NSI are registered trademarks of NSI Software, Inc.

More information

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

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

More information

Administrator s Guide

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

More information

Manage Dell Hardware in a Virtual Environment Using OpenManage Integration for VMware vcenter

Manage Dell Hardware in a Virtual Environment Using OpenManage Integration for VMware vcenter Manage Dell Hardware in a Virtual Environment Using OpenManage Integration for VMware vcenter This Dell Technical White Paper gives an overview of using OpenManage Integration to streamline the time, tools

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

Dell Repository Manager Tutorial

Dell Repository Manager Tutorial Dell Repository Manager Tutorial A Simple and Efficient Way to Manage the Update Files Yong Cao, Shoba SS, Paula Desmond Dell Repository Manager Team Product Group 2011, Dell Inc. 1 Contents Dell Change

More information

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER

STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER Notes: STATISTICA VERSION 9 STATISTICA ENTERPRISE INSTALLATION INSTRUCTIONS FOR USE WITH TERMINAL SERVER 1. These instructions focus on installation on Windows Terminal Server (WTS), but are applicable

More information

HP Softpaq Download Manager and HP System Software Manager

HP Softpaq Download Manager and HP System Software Manager Technical white paper HP Softpaq Download Manager and HP System Software Manager A Powerful Combination Table of contents Executive summary... 2 Overview of HP SDM and HP SSM... 2 Use case for HP SDM and

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

AdminStudio 2013. Release Notes. 16 July 2013. Introduction... 3. New Features... 6

AdminStudio 2013. Release Notes. 16 July 2013. Introduction... 3. New Features... 6 AdminStudio 2013 Release Notes 16 July 2013 Introduction... 3 New Features... 6 Microsoft App-V 5.0 Support... 6 Support for Conversion to App-V 5.0 Virtual Packages... 7 Automated Application Converter

More information

AdminStudio 2013. Installation Guide. Version 2013

AdminStudio 2013. Installation Guide. Version 2013 AdminStudio 2013 Installation Guide Version 2013 Legal Information Book Name: AdminStudio 2013 Installation Guide / Full and Limited Editions Part Number: ADS-2013-IG03 Product Release Date: July 16, 2013

More information

VERITAS Backup Exec 9.1 for Windows Servers Quick Installation Guide

VERITAS Backup Exec 9.1 for Windows Servers Quick Installation Guide VERITAS Backup Exec 9.1 for Windows Servers Quick Installation Guide N109548 Disclaimer The information contained in this publication is subject to change without notice. VERITAS Software Corporation makes

More information

Moving the TRITON Reporting Databases

Moving the TRITON Reporting Databases Moving the TRITON Reporting Databases Topic 50530 Web, Data, and Email Security Versions 7.7.x, 7.8.x Updated 06-Nov-2013 If you need to move your Microsoft SQL Server database to a new location (directory,

More information

Backup and Recovery FAQs

Backup and Recovery FAQs May 2013 Page 1 This document answers frequently asked questions regarding the Emerson system Backup and Recovery application. www.deltav.com May 2013 Page 2 Table of Contents Introduction... 6 General

More information

Troubleshooting Guide

Troubleshooting Guide Enable WMI after applying SP2 for XP Company web site: Support email: support@ Support telephone: +44 20 3287-7651 +1 646 233-1163 2 This tutorial will guide you on enabling WMI after applying Service

More information

HOUR 3. Installing Windows Server 2003

HOUR 3. Installing Windows Server 2003 HOUR 3 Installing Windows Server 2003 In this hour, we discuss the different types of Windows Server 2003 installations, such as upgrading an existing server or making a clean install on a server that

More information

HP Insight Diagnostics Online Edition. Featuring Survey Utility and IML Viewer

HP Insight Diagnostics Online Edition. Featuring Survey Utility and IML Viewer Survey Utility HP Industry Standard Servers June 2004 HP Insight Diagnostics Online Edition Technical White Paper Featuring Survey Utility and IML Viewer Table of Contents Abstract Executive Summary 3

More information

TechNote. Contents. Overview. System or Network Requirements. Deployment Considerations

TechNote. Contents. Overview. System or Network Requirements. Deployment Considerations Network Security Read Domain Security Logs Contents Overview... 1 System or Network Requirements... 1 Deployment Considerations... 1 Configuring Non-Administrator Accounts for WMI Remote Access... 2 Glossary

More information

Windows PCs & Servers are often the life-blood of your IT investment. Monitoring them is key, especially in today s 24 hour world!

Windows PCs & Servers are often the life-blood of your IT investment. Monitoring them is key, especially in today s 24 hour world! + Welcome to The Sentry-go Monitoring System v6 Monitoring made quick & easy! Be Proactive, Not Reactive! 3Ds (UK) Limited http://www.sentry-go.com Welcome to Sentry-go Sentry-go is a quick & easy to use

More information

Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide

Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer.

More information

Lifecycle Controller Platform Update/Firmware Update in Dell PowerEdge 12th Generation Servers

Lifecycle Controller Platform Update/Firmware Update in Dell PowerEdge 12th Generation Servers Lifecycle Controller Platform Update/Firmware Update in Dell PowerEdge 12th Generation Servers This Dell Technical White Paper provides detailed information about the capabilities of Lifecycle Controller

More information

Chapter 5: Operating Systems Part 1

Chapter 5: Operating Systems Part 1 Name Period Chapter 5: Operating Systems Part 1 1. What controls almost all functions on a computer? 2. What operating systems will be discussed in this chapter? 3. What is meant by multi-user? 4. Explain

More information

Backup and Restore the HPOM for Windows 8.16 Management Server

Backup and Restore the HPOM for Windows 8.16 Management Server Backup and Restore the HPOM for Windows 8.16 Management Server White Paper version 2.0 Backup and Restore the HPOM for Windows 8.16 Management Server... 1 Change record... 2 Conceptual Overview... 3 Understanding

More information

Server & Application Monitor

Server & Application Monitor Server & Application Monitor agentless application & server monitoring SolarWinds Server & Application Monitor provides predictive insight to pinpoint app performance issues. This product contains a rich

More information

VERITAS Backup Exec TM 10.0 for Windows Servers

VERITAS Backup Exec TM 10.0 for Windows Servers VERITAS Backup Exec TM 10.0 for Windows Servers Quick Installation Guide N134418 July 2004 Disclaimer The information contained in this publication is subject to change without notice. VERITAS Software

More information

Using Dell Server Diagnostic Tools

Using Dell Server Diagnostic Tools Troubleshooting Enterprise Production Environments Using Dell Server Diagnostic Tools Dell server diagnostic tools are designed to enhance fault isolation and root-cause analysis in enterprise production

More information

Metalogix SharePoint Backup. Advanced Installation Guide. Publication Date: August 24, 2015

Metalogix SharePoint Backup. Advanced Installation Guide. Publication Date: August 24, 2015 Metalogix SharePoint Backup Publication Date: August 24, 2015 All Rights Reserved. This software is protected by copyright law and international treaties. Unauthorized reproduction or distribution of this

More information

SPECOPS DEPLOY / OS 4.6 DOCUMENTATION

SPECOPS DEPLOY / OS 4.6 DOCUMENTATION Technical documentation: SPECOPS DEPLOY / OS 4.6 DOCUMENTATION By Shay Byrne, Product Manager 1 Getting Started... 4 1.1 Specops Deploy / OS Supported Configurations...4 1.2 Specops Deploy and Active Directory...

More information

Acronis Backup & Recovery 10 Server for Windows. Installation Guide

Acronis Backup & Recovery 10 Server for Windows. Installation Guide Acronis Backup & Recovery 10 Server for Windows Installation Guide Table of Contents 1. Installation of Acronis Backup & Recovery 10... 3 1.1. Acronis Backup & Recovery 10 components... 3 1.1.1. Agent

More information

System Center Configuration Manager 2007

System Center Configuration Manager 2007 System Center Configuration Manager 2007 Software Distribution Guide Friday, 26 February 2010 Version 1.0.0.0 Baseline Prepared by Microsoft Copyright This document and/or software ( this Content ) has

More information

Installation & Maintenance Guide

Installation & Maintenance Guide The instruction booklet is also included on the CD in Word and Acrobat formats, which may be easier to print. (If you want to install Acrobat Reader run d:\acroread\setup.exe (where d:\ is the identifier

More information

System Management. What are my options for deploying System Management on remote computers?

System Management. What are my options for deploying System Management on remote computers? Getting Started, page 1 Managing Assets, page 2 Distributing Software, page 3 Distributing Patches, page 4 Backing Up Assets, page 5 Using Virus Protection, page 6 Security, page 7 Getting Started What

More information

HP SoftPaq Download Manager and HP System Software Manager A Powerful Combination

HP SoftPaq Download Manager and HP System Software Manager A Powerful Combination HP SoftPaq Download Manager and HP System Software Manager A Powerful Combination Technical white paper Table of contents Executive summary... 2 Overview of HP SDM and HP SSM... 2 Use Case for SDM/SSM...

More information

New Boundary Technologies, Inc. 1300 Godward Street N.E. Suite 3100 Minneapolis, MN 55413

New Boundary Technologies, Inc. 1300 Godward Street N.E. Suite 3100 Minneapolis, MN 55413 Trademarks & Patents Prism Suite Quick Start Guide published June, 2011 This publication could include technical inaccuracies or typographical errors. Changes are periodically made to the information herein;

More information

SQL Server 2008 R2 Express Edition Installation Guide

SQL Server 2008 R2 Express Edition Installation Guide Hardware, Software & System Requirements for SQL Server 2008 R2 Express Edition To get the overview of SQL Server 2008 R2 Express Edition, click here. Please refer links given below for all the details

More information

How to Configure Microsoft System Operation Manager to Monitor Active Directory, Group Policy and Exchange Changes Using NetWrix Active Directory

How to Configure Microsoft System Operation Manager to Monitor Active Directory, Group Policy and Exchange Changes Using NetWrix Active Directory How to Configure Microsoft System Operation Manager to Monitor Active Directory, Group Policy and Exchange Changes Using NetWrix Active Directory Change Reporter Table of Contents General Information...

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

Advanced Diploma In Hardware, Networking & Server Configuration

Advanced Diploma In Hardware, Networking & Server Configuration Advanced Diploma In Hardware, Networking & Server Configuration Who should do this course? This course is meant for those persons who have a dream of getting job based on Computer Hardware, Networking

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

User's Guide - Beta 1 Draft

User's Guide - Beta 1 Draft IBM Tivoli Composite Application Manager for Microsoft Applications: Microsoft Hyper-V Server Agent vnext User's Guide - Beta 1 Draft SC27-2319-05 IBM Tivoli Composite Application Manager for Microsoft

More information

Course Description. Course Audience. Course Outline. Course Page - Page 1 of 12

Course Description. Course Audience. Course Outline. Course Page - Page 1 of 12 Course Page - Page 1 of 12 Windows 7 Enterprise Desktop Support Technician M-50331 Length: 5 days Price: $2,795.00 Course Description This five-day instructor-led course provides students with the knowledge

More information

Integrating HP Insight Management WBEM (WMI) Providers for Windows with HP System Insight Manager

Integrating HP Insight Management WBEM (WMI) Providers for Windows with HP System Insight Manager Integrating HP Insight Management WBEM (WMI) Providers for Windows with HP System Insight Manager Integration note, 4 th edition Introduction... 2 Utilizing HP WBEM Providers for Windows... 2 Security...

More information

virtualization.info Review Center SWsoft Virtuozzo 3.5.1 (for Windows) // 02.26.06

virtualization.info Review Center SWsoft Virtuozzo 3.5.1 (for Windows) // 02.26.06 virtualization.info Review Center SWsoft Virtuozzo 3.5.1 (for Windows) // 02.26.06 SWsoft Virtuozzo 3.5.1 (for Windows) Review 2 Summary 0. Introduction 1. Installation 2. VPSs creation and modification

More information

NetWrix Server Configuration Monitor

NetWrix Server Configuration Monitor NetWrix Server Configuration Monitor Version 2.2 Quick Start Guide Contents NetWrix Server Configuration Monitor Quick Start Guide 1. INTRODUCTION... 3 1.1 KEY FEATURES... 3 1.2 LICENSING... 4 1.3 HOW

More information

HPOM 8.1 High Availability Utilizing Microsoft SQL Server Log Shipping

HPOM 8.1 High Availability Utilizing Microsoft SQL Server Log Shipping HPOM 8.1 High Availability Utilizing Microsoft SQL Server Log Shipping White Paper version 2.4 HPOM 8.1 High Availability Utilizing Microsoft SQL Server Log Shipping... 1 Change record... 3 Architectural

More information

Systems Management Tools And Documentation Version 8.1 Installation Guide

Systems Management Tools And Documentation Version 8.1 Installation Guide Systems Management Tools And Documentation Version 8.1 Installation Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer. CAUTION:

More information

WhatsUp Gold v11 Features Overview

WhatsUp Gold v11 Features Overview WhatsUp Gold v11 Features Overview This guide provides an overview of the core functionality of WhatsUp Gold v11, and introduces interesting features and processes that help users maximize productivity

More information

This document describes the installation of the Web Server for Bosch Recording Station 8.10.

This document describes the installation of the Web Server for Bosch Recording Station 8.10. Description Content 1 Introduction... 1 2 Web Server for BRS running on Windows 7... 2 3 Web Server for BRS running on Windows Server 2008... 15 4 Web Server for BRS running on Windows XP... 29 5 Web Server

More information

Using Diskeeper Corporation Products with Windows XP Service Pack 2, Windows Server 2003 Service Pack 1 and Windows Vista

Using Diskeeper Corporation Products with Windows XP Service Pack 2, Windows Server 2003 Service Pack 1 and Windows Vista Using Diskeeper Corporation Products with Windows XP Service Pack 2, Windows Server 2003 Service Pack 1 and Windows Vista 1.0 Introduction Service Pack 2 (SP2) for Windows XP and Service Pack 1 (SP1) for

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

Unicenter NSM Integration for Remedy (v 1.0.5)

Unicenter NSM Integration for Remedy (v 1.0.5) Unicenter NSM Integration for Remedy (v 1.0.5) The Unicenter NSM Integration for Remedy package brings together two powerful technologies to enable better tracking, faster diagnosis and reduced mean-time-to-repair

More information

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

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

More information

Using WMI Scripts with BitDefender Client Security

Using WMI Scripts with BitDefender Client Security Using WMI Scripts with BitDefender Client Security Whitepaper Copyright 2009 BitDefender; Table of Contents 1. Introduction... 3 2. Key Benefits... 4 3. Available WMI Script Templates... 5 4. Operation...

More information

Spectrum Technology Platform. Version 9.0. Spectrum Spatial Administration Guide

Spectrum Technology Platform. Version 9.0. Spectrum Spatial Administration Guide Spectrum Technology Platform Version 9.0 Spectrum Spatial Administration Guide Contents Chapter 1: Introduction...7 Welcome and Overview...8 Chapter 2: Configuring Your System...9 Changing the Default

More information

Idera SQL Diagnostic Manager Management Pack Guide for System Center Operations Manager. Install Guide. Idera Inc., Published: April 2013

Idera SQL Diagnostic Manager Management Pack Guide for System Center Operations Manager. Install Guide. Idera Inc., Published: April 2013 Idera SQL Diagnostic Manager Management Pack Guide for System Center Operations Manager Install Guide Idera Inc., Published: April 2013 Contents Introduction to the Idera SQL Diagnostic Manager Management

More information

RES ONE Automation 2015 Task Overview

RES ONE Automation 2015 Task Overview RES ONE Automation 2015 Task Overview Task Overview RES ONE Automation 2015 Configuration Tasks The library Configuration contains Tasks that relate to the configuration of a computer, such as applying

More information

HP Insight Management WBEM Providers for Windows User Guide

HP Insight Management WBEM Providers for Windows User Guide HP Insight Management WBEM Providers for Windows User Guide Part number 481592-001 First edition 02/2008 Legal notices 2008 Hewlett-Packard Development Company, L.P. The information contained herein is

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

FactoryTalk Gateway Getting Results Guide

FactoryTalk Gateway Getting Results Guide Performance and Visibility FactoryTalk Gateway Getting Results Guide Getting Results Guide Table of contents Chapter 1 Introduction Intended audience... 7 Where to find additional information... 7 Help...

More information

Windows Server 2003 default services

Windows Server 2003 default services Windows Server 2003 default services To view a description for a particular service, hover the mouse pointer over the service in the Name column. The descriptions included here are based on Microsoft documentation.

More information

Paul McFedries. Home Server 2011 LEASHE. Third Edition. 800 East 96th Street, Indianapolis, Indiana 46240 USA

Paul McFedries. Home Server 2011 LEASHE. Third Edition. 800 East 96th Street, Indianapolis, Indiana 46240 USA Paul McFedries Microsoft Windows9 Home Server 2011 LEASHE Third Edition 800 East 96th Street, Indianapolis, Indiana 46240 USA Table of Contents Introduction 1 Part I Unleashing Windows Home Server Configuration

More information

Implementing a SAS Metadata Server Configuration for Use with SAS Enterprise Guide

Implementing a SAS Metadata Server Configuration for Use with SAS Enterprise Guide Implementing a SAS Metadata Server Configuration for Use with SAS Enterprise Guide Step 1: Setting Up Required Users and Groups o Windows Operating Systems Only Step 2: Installing Software Using the SAS

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

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

UltraBac Documentation. UBDR Gold. Administrator Guide UBDR Gold v8.0

UltraBac Documentation. UBDR Gold. Administrator Guide UBDR Gold v8.0 UltraBac Documentation UBDR Gold Bare Metal Disaster Recovery Administrator Guide UBDR Gold v8.0 UBDR Administrator Guide UBDR Gold v8.0 The software described in this guide is furnished under a license

More information

Table of Contents. FleetSoft Installation Guide

Table of Contents. FleetSoft Installation Guide FleetSoft Installation Guide Table of Contents FleetSoft Installation Guide... 1 Minimum System Requirements... 2 Installation Notes... 3 Frequently Asked Questions... 4 Deployment Overview... 6 Automating

More information

Windows 7, Enterprise Desktop Support Technician

Windows 7, Enterprise Desktop Support Technician Course 50331D: Windows 7, Enterprise Desktop Support Technician Page 1 of 11 Windows 7, Enterprise Desktop Support Technician Course 50331D: 4 days; Instructor-Led Introduction This four-day instructor-ledcourse

More information

SQL Server Solutions GETTING STARTED WITH. SQL Safe Backup

SQL Server Solutions GETTING STARTED WITH. SQL Safe Backup SQL Server Solutions GETTING STARTED WITH SQL Safe Backup Purpose of this document Due to its depth and potential for customization, there are often parts of SQL Safe Backup that are overlooked during

More information

Microsoft Windows Storage Server 2003 R2

Microsoft Windows Storage Server 2003 R2 Microsoft Windows Storage Server 2003 R2 Getting Started Guide Abstract This guide documents the various features available in Microsoft Windows Storage Server 2003 R2. Rev 1. 2005 Microsoft Corporation.

More information

Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark. For Windows Server 2008 (Domain Member Servers and Domain Controllers)

Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark. For Windows Server 2008 (Domain Member Servers and Domain Controllers) Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark For Windows Server 2008 (Domain Member Servers and Domain Controllers) Symantec Enterprise Security Manager Baseline Policy

More information

Deep Freeze and Microsoft System Center Configuration Manager 2012 Integration

Deep Freeze and Microsoft System Center Configuration Manager 2012 Integration 1 Deep Freeze and Microsoft System Center Configuration Manager 2012 Integration Technical Paper Last modified: May 2015 Web: www.faronics.com Email: sales@faronics.com Phone: 800-943-6422 or 604-637-3333

More information

START YOUR INVENTORY WITH SCANFRE

START YOUR INVENTORY WITH SCANFRE START YOUR INVENTORY WITH SCANFRE April 2014 LANDPARK SCANFREE «Quickly estimate your data processing systems before considering their evolution. Landpark Scanfree, solution for your IT asset tracking

More information

TU04. Best practices for implementing a BI strategy with SAS Mike Vanderlinden, COMSYS IT Partners, Portage, MI

TU04. Best practices for implementing a BI strategy with SAS Mike Vanderlinden, COMSYS IT Partners, Portage, MI TU04 Best practices for implementing a BI strategy with SAS Mike Vanderlinden, COMSYS IT Partners, Portage, MI ABSTRACT Implementing a Business Intelligence strategy can be a daunting and challenging task.

More information

Inteset Secure Lockdown ver. 2.0

Inteset Secure Lockdown ver. 2.0 Inteset Secure Lockdown ver. 2.0 for Windows XP, 7, 8, 10 Administrator Guide Table of Contents Administrative Tools and Procedures... 3 Automatic Password Generation... 3 Application Installation Guard

More information

Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010

Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010 Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010 This document describes the different types of Unisphere management stations and tells how to install

More information

QuickOPC Examples. Examples-QuickOPC.docx Page 1 of 19

QuickOPC Examples. Examples-QuickOPC.docx Page 1 of 19 QuickOPC Examples Examples-QuickOPC.docx Page 1 of 19 Contents QuickOPC Examples... 1 Introduction... 3.NET Examples... 4 Examples for OPC Classic (OPC-DA, OPC XML-DA and OPC-A&E)... 4 Examples for OPC

More information

Windows 7, Enterprise Desktop Support Technician Course 50331: 5 days; Instructor-led

Windows 7, Enterprise Desktop Support Technician Course 50331: 5 days; Instructor-led Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Windows 7, Enterprise Desktop Support Technician Course 50331: 5 days; Instructor-led

More information

Out n About! for Outlook Electronic In/Out Status Board. Administrators Guide. Version 3.x

Out n About! for Outlook Electronic In/Out Status Board. Administrators Guide. Version 3.x Out n About! for Outlook Electronic In/Out Status Board Administrators Guide Version 3.x Contents Introduction... 1 Welcome... 1 Administration... 1 System Design... 1 Installation... 3 System Requirements...

More information

Integrating idrac7 With Microsoft Active Directory

Integrating idrac7 With Microsoft Active Directory Integrating idrac7 With Microsoft Active Directory Whitepaper Author: Jim Slaughter This document is for informational purposes only and may contain typographical errors and technical inaccuracies. The

More information

How To Manage A Data Center Remotely From A Computer Or Network Remotely

How To Manage A Data Center Remotely From A Computer Or Network Remotely Configuring Alert Actions in OpenManage Essentials This Dell technical white paper explains how to configure various alert actions in order to monitor the data center remotely. OME Engineering Team This

More information

Windows Server 2012 Directory Partition Containers- A Walk Through

Windows Server 2012 Directory Partition Containers- A Walk Through Windows Server 2012 Directory Partition Containers- A Walk Through Introduction: Active Directory Users and Computers form a centralized management console to manage User objects, computer objects, Groups,

More information

Installing and Administering VMware vsphere Update Manager

Installing and Administering VMware vsphere Update Manager Installing and Administering VMware vsphere Update Manager Update 1 vsphere Update Manager 5.1 This document supports the version of each product listed and supports all subsequent versions until the document

More information

Dell Server Management Pack Suite Version 6.0 for Microsoft System Center Operations Manager User's Guide

Dell Server Management Pack Suite Version 6.0 for Microsoft System Center Operations Manager User's Guide Dell Server Management Pack Suite Version 6.0 for Microsoft System Center Operations Manager User's Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make

More information

Setting Up ALERE with Client/Server Data

Setting Up ALERE with Client/Server Data Setting Up ALERE with Client/Server Data TIW Technology, Inc. November 2014 ALERE is a registered trademark of TIW Technology, Inc. The following are registered trademarks or trademarks: FoxPro, SQL Server,

More information

Enterprise Vault Installing and Configuring

Enterprise Vault Installing and Configuring Enterprise Vault Installing and Configuring Enterprise Vault 6.0 Legal Notice Copyright 2005 Symantec Corporation. All rights reserved. Symantec, the Symantec Logo, VERITAS, the VERITAS Logo, and Enterprise

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

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

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

More information

Vector Asset Management User Manual

Vector Asset Management User Manual Vector Asset Management User Manual This manual describes how to set up Vector Asset Management 6.0. It describes how to use the: Vector AM Console Vector AM Client Hardware Inventory Software Inventory

More information