Script Host 2.0 Developer's Guide

Size: px
Start display at page:

Download "Script Host 2.0 Developer's Guide"

Transcription

1 _ Microsoft icrosoft Script Host 2.0 Developer's Guide Günter Born

2 Introduction xv parti Introduction to the World of Script Programming chapter i Introduction to Windows Script Host 3 WHAT YOU CAN DO WITH WSH SCRIPTS 4 A Few Remarks About VBScript and JScript 5 UPGRADING TO WSH 2 5 CREATING AND USING SCRIPTS 7 Creating Your First Script in VBScript 7 Creating the Same Script in JScript 9 Executing WSH Scripts 10 Submitting Arguments to a Script 14 The New.wsf File Format 19 Including External Files 20 Using Type Libraries 20 Debugging Features 21 chapter 2 Development Tools and Techniques 23 CREATING SCRIPTS 23 Using Script Templates 24 EDITING SCRIPTS 26 Invoking Script Editors 26 INSTALLING AND UNINSTALLING ACTIVEX CONTROLS 34 Registering a Control 34 Uninstalling a Control 35 DEBUGGING SCRIPTS 36 Tracing Your Programs 37 Using the Microsoft Script Debugger 39

3 chapter з Introduction to Programming with Objects 45 OBJECTS 45 A Simple Object 46 The Object Model 46 Collections 47 Methods 48 A Practical Example 49 AVAILABLE OBJECTS 49 Getting Information About Objects, Methods, and Properties 50 chapter 4 Introduction to VBScript 51 BASIC FEATURES 51 Statements, Continued Lines, and Comments 51 Constants and Variables 54 Operators 63 Control Structures 67 Loops 69 Functions and Procedures 71 ADVANCED FEATURES 80 Error Handling 80 Regular Expressions (in VBScript 5.0 and Later) 82 Classes (in VBScript 5.0) 85 Using the With Statement (in VBScript 5.0) 89 chapter 5 Introduction to JScript 91 WHAT is JSCRIPT? 91 THE STRUCTURE OF A JSCRIPT PROGRAM 92 Comments 93 Statements 93 Constants 94 Variables 94 Escape Sequences in Strings 98 OPERATORS 99 Assignment Operator 100 Comparison Operators 100 Calculation Operators 100

4 Increment and Decrement Operators Logical Operators Operator Precedence CONTROL STRUCTURES if Statement Conditional Operator for Loop for...in Loop while Loop do...while Loop switch Statement break and continue Keywords FUNCTIONS AND OBJECTS User-Defined Functions Built-in Functions Objects Arrays Part и interactive Scripting chapter 6 Creating Simple Dialog Boxes in WSH USING THE ECHO METHOD Using Echo in VBScript Using Echo in the Command Prompt Window Using Echo in JScript Using a Line Feed with Echo USING THE MSGBOX FUNCTION IN VBSCRIPT Defining the Icon and Buttons in a Dialog Box Setting the Focus on a Button Determining Which Button Was Used to Close a Dialog Box Example: A Welcome Login Message in VBScript USING THE POPUP METHOD Using Popup in VBScript Another JScript Example Using Popup

5 chapter 7 Working with WSH Objects 141 USING THE WSCRIPT OBJECT 141 Retrieving WSH and Script Properties 142 Retrieving Language Engine Properties 145 Accessing Script Arguments 147 ACCESSING ENVIRONMENT VARIABLES 152 Accessing Environment Variables in a Script 152 CREATING AND RELEASING OBJECTS 165 CreateObject vs. GetObject 167 Using DisconnectObject 168 LAUNCHING OTHER PROGRAMS FROM A SCRIPT 170 Launching Notepad from VBScript 173 Launching Calculator from JScript 174 Paths Containing Blanks 175 The Quit Method 176 Using the Run Method to Execute MS-DOS Commands 180 chapter 8 Retrieving User Input in WSH Scripts 183 INVOKING AN INPUT DIALOG BOX IN VBSCRIPT 183 INVOKING AN INPUT DIALOG BOX IN JSCRIPT 186 A WSH 2 Solution: Combining VBScript and JScript 186 Using the prompt Method from Internet Explorer 188 chapter 9 Working with Forms 195 USING INTERNET EXPLORER TO CREATE AN ABOUT DIALOG BOX 195 Using the showmodaldialog Method to Display an HTML File 196 Displaying the About Dialog Box Using VBScript 199 Displaying the About Dialog Box Using JScript 201 USING INTERNET EXPLORER AND WSH то CREATE A FORM 202 HTML Code for the Form 202 Displaying the Form 203 A JScript WSH Script for Displaying the Form 207 Displaying a File Selection Dialog Box 209 Improving the Form 212

6 Part in Power Scripting chapter 10 Creating Shortcuts 225 SHORTCUT BASICS 225 Using the CreateShortcut Method 226 SHORTCUTS: BEYOND THE BASICS 231 Using the SpecialFolders Object 231 Creating a Shortcut on the Desktop 238 Creating a Shortcut on the Start Menu 242 Creating a Shortcut Using Arguments 248 Reading Shortcut Properties 253 Updating a Shortcut 259 Creating a Shortcut to a Web Site 263 chapter li Using Advanced WSH Features 267 RETRIEVING THE USER, DOMAIN, OR COMPUTER NAME 267 The JScript Implementation 269 CONNECTING TO A NETWORK PRINTER 270 Printer Mapping Using AddWindowsPrinterConnection 271 Printer Mapping Using AddPrinterConnection 272 Removing a Printer Mapping 276 Listing All Mapped Printers 278 Setting the Default Printer 279 MAPPING NETWORK DRIVES 281 The JScript Implementation 284 Logon Scripts 286 ACCESSING THE WINDOWS REGISTRY 286 Accessing the Registry in WSH 288 Accessing the Registry in VBScript 290 Run-Time Error Handling for Registry Access 293 Checking the Existence of a Key 296 Techniques for Registry Access in WSH 299 Enumerating Registry Keys and Values 305 Accessing the Registry Remotely 307 Changing the Windows 98 Installation Path 309 Hiding the Last User Name at Logon 311 Retrieving the Workgroup Name in Windows

7 chapter 12 Using File System and I/O Commands 317 THE FILESYSTEMOBJECT OBJECT MODEL 317 Creating a FileSystemObject Object 318 Methods of the FileSystemObject Object 319 ACCESSING DRIVES 320 Listing All Drives on a Machine 320 Showing Drive Properties 325 ACCESSING FILES AND FOLDERS 331 Listing All Subfolders in a Folder 332 Creating, Moving, Renaming, and Deleting Folders 335 Listing All Files in a Folder 343 Retrieving File Attributes and Dates 347 Copying and Deleting Files 355 Backing Up Folders 359 ACCESSING TEXT FILES 365 Reading from a Text File 365 Pitfalls of Using Dialog Boxes and Browser Windows to View Text Files 368 Writing to a Text File 376 Appending New Text to an Existing File 380 Replacing Text in a File 382 USING THE BROWSE FOR FOLDER DIALOG BOX 385 Using BrowseForFolder to Select Folders 386 Using BrowseForFolder to Select Files 391 chapter i3 Controlling Windows and Applications from Scripts 397 DELAYING SCRIPT EXECUTION 397 Using the Sleep Method to Reduce the CPU Load 398 Using a Delay to Solve a Problem with Asynchronous Processes 399 ACTIVATING AN APPLICATION USING THE APPACTIVATE METHOD 401 Pitfalls of Using the AppActivate Method 404 USING THE SENDKEYS METHOD TO SIMULATE KEYSTROKES 406 Using SendKeys in WSH Manipulating Two Applications Using SendKeys 410

8 CUSTOMIZING WINDOWS USING LOGON SCRIPTS 413 Setting Up a Logon Script 413 Using Global Logon and Logoff Scripts 415 Using Startup and Shutdown Scripts 416 Startup and Logon Scripts in Windows 95 and Windows chapter 14 Programming Techniques and Tips 419 RUN-TIME ERRORS 419 Handling Run-Time Errors in VBScript 419 Handling Run-Time Errors in JScript 420 Raising a Run-Time Error in VBScript 421 PATHS AND DATES 421 Getting the Script's Path 421 Getting the Current Directory 422 Setting the Default Folder 423 Getting the Current Drive Name 423 Calculating Date Differences 424 LONG FILENAMES, THE AT COMMAND, AND SYSTEM CALLS 425 Using the Windows NT Scheduler to Execute WSH Scripts 425 Using Long Filenames in Scripts 425 Using the Run Method to Execute System Calls 426 Locking a Windows 2000 Workstation 429 Invoking the Copy Disk Dialog Box 430 Invoking the Format Dialog Box 431 Invoking the Screen Saver Property Page 432 Calling Control Panel Modules 432 Using the Run Method to Handle Network Mappings 434 USER DIALOG BOXES AND OUTPUT 434 Using Tabs and Line Feeds 434 Displaying Console Input and Output 435 Writing to a Line and Reading from It 437 Piping Program Output 439 Using Files for Streaming 440 Logging Script Output 443 Printing from a WSH Script 446

9 FILE HANDLING Checking Whether a File or Folder Exists Checking Whether a Folder is Empty Checking Whether an Access Database Is in Use Copying a File Renaming a File or Folder Searching for a File Listing All Shortcut Files PLAYING SOUND Using Internet Explorer to Play Sound THE WINDOWS SHELL Testing the Shell Version Arranging the Desktop Windows Opening Folder Windows Accessing Windows Shell Dialog Boxes CALLING A DUN CONNECTION pan IV Appendixes Appendix A WSH Resources on the Internet Appendix в Script Security PARTIALLY DISABLING WSH PREVENTING AUTOMATIC EXECUTION OF WSH SCRIPTS SECURITY SETTINGS FOR WSH SCRIPTS CONCLUDING REMARKS Index

4 Working with WSH objects

4 Working with WSH objects 4 Working with WSH objects In the preceding chapter I have discussed a few basics of script programming. We have also used a few objects, methods and properties. In this chapter I would like to extend

More information

Windows 2000 Professional

Windows 2000 Professional The American University in Cairo Academic Computing Services Windows 2000 Professional prepared by Soumaia Ahmed Al Ayyat 4 August 2003 Table of Contents Starting Up the Computer Windows Environment Start

More information

Table Of Contents INTRODUCTION Release Notes... 5 Contacting AdventNet... 6 TECHNOLOGY OVERVIEW... 8

Table Of Contents INTRODUCTION Release Notes... 5 Contacting AdventNet... 6 TECHNOLOGY OVERVIEW... 8 Table Of Contents INTRODUCTION... 4 Release Notes... 5 Contacting AdventNet... 6 TECHNOLOGY OVERVIEW... 8 Active Directory Overview... 9 Group Policy Overview... 10 GETTING STARTED... 11 System Requirements...

More information

Microsoft Outlook Help Sheet ATTACHMENTS

Microsoft Outlook Help Sheet ATTACHMENTS Attachments are files or items that can be included with an e-mail message. Messages that include attachments are identified by a paper clip icon in the message list. Depending on the format of the message

More information

Launcher DXLab Launcher 2.1.1

Launcher DXLab Launcher 2.1.1 Launcher 2.1.1 Overview...2 DXLab Prerequisites...3 Download and Installation...4 Configuration... 10 Controlling Applications... 14 Installing, Upgrading, and Restoring DXLab Applications... 17 Using

More information

Information Communications Technology (CE-ICT) 6 th Class

Information Communications Technology (CE-ICT) 6 th Class Information Communications Technology (CE-ICT) 6 th Class Lecture 1: Microsoft(MS) Windows Operating System (OS) Lecturer: Sophia Agenda for Today Microsoft Windows Operating System Windows Desktop Launching

More information

This document describes the installation procedure for Embed-SE (Simulation Edition)

This document describes the installation procedure for Embed-SE (Simulation Edition) Installation Guide This document describes the installation procedure for Embed-SE (Simulation Edition) 2016.3. Main Installer Before you begin the installation, please read step 7. If you will be using

More information

Software Restriction for Zero Client Users (AppLocker Group Policy)

Software Restriction for Zero Client Users (AppLocker Group Policy) Software Restriction for Zero Client Users (AppLocker Group Policy) Software Restriction for Zero Client Users by Using AppLocker Group Policy AppLocker Group policy Description: AppLocker Group Policy

More information

Windows 2000 Safe Mode

Windows 2000 Safe Mode LAB PROCEDURE 29 Windows 2000 Safe Mode OBJECTIVES 1. Restart and try various startup options. RESOURCES Troubleshooting 1. Marcraft 8000 Trainer with Windows 2000 installed 2. A PS2 mouse 3. A LAN connection

More information

Cannot open attachments in Microsoft Outlook

Cannot open attachments in Microsoft Outlook Page 1 of 5 Cannot open attachments in Microsoft Outlook Important This article contains information about modifying the registry. Before you modify the registry, make sure to back it up and make sure

More information

Pursuit 7 for Windows

Pursuit 7 for Windows Pursuit 7 for Windows Proposal Generation System Z-Micro Technologies, Inc. Installation Guide Copyright 2010. Z-Micro Technologies, LLC. All Rights Reserved. Setting Up Pursuit 7 for Windows - Client

More information

SuperNova. Screen Reader. Version 14.0

SuperNova. Screen Reader. Version 14.0 SuperNova Screen Reader Version 14.0 Dolphin Computer Access Publication Date: 09 April 2014 Copyright 1998-2014 Dolphin Computer Access Ltd. Technology House Blackpole Estate West Worcester WR3 8TJ United

More information

The QuickCalc BASIC User Interface

The QuickCalc BASIC User Interface The QuickCalc BASIC User Interface Running programs in the Windows Graphic User Interface (GUI) mode. The GUI mode is far superior to running in the CONSOLE mode. The most-used functions are on buttons,

More information

Installation & Configuration Guide

Installation & Configuration Guide Installation & Configuration Guide Installation redisend Installation Steps: 1. Run the setupredisend.exe from the location it was downloaded 2. Select your language and click OK - figure 1.0 Figure 1.0:

More information

LexisNexis Citation Tools Installation Instructions

LexisNexis Citation Tools Installation Instructions LexisNexis Citation Tools Installation Instructions Table of Contents Read This First....................................... 2 Minimum Requirements................................ 2 Installation Scenarios..................................

More information

Print Station. Point-and-Click Printing WHITE PAPER

Print Station. Point-and-Click Printing WHITE PAPER Print Station Point-and-Click Printing WHITE PAPER Contents Overview 3 Printing with Print Station 4 Easy-to-use Browser Interface 4 Familiar Folder Navigation 5 Search Functionality 6 Informative Display

More information

Windows Script Host Fundamentals

Windows Script Host Fundamentals O N E Windows Script Host Fundamentals 1 The Windows Script Host, or WSH for short, is one of the most powerful and useful parts of the Windows operating system. Strangely enough, it is also one of least

More information

Coding Faster: Getting More Productive with Microsoft Visual

Coding Faster: Getting More Productive with Microsoft Visual Microsoft Coding Faster: Getting More Productive with Microsoft Visual Studio Covers Microsoft Visual Studio 2005, 2008, and 2010 Zain Naboulsi Sara Ford Table of Contents Foreword Introduction xxiii xxvii

More information

Acknowledgments Introduction. Part I: Programming Access Applications 1. Chapter 1: Overview of Programming for Access 3

Acknowledgments Introduction. Part I: Programming Access Applications 1. Chapter 1: Overview of Programming for Access 3 74029ftoc.qxd:WroxPro 9/27/07 1:40 PM Page xiii Acknowledgments Introduction x xxv Part I: Programming Access Applications 1 Chapter 1: Overview of Programming for Access 3 Writing Code for Access 3 The

More information

As enterprise networks. Exploring the Windows Management Instrumentation Feature of Windows The Windows Management BY SUSAN EISENHARD

As enterprise networks. Exploring the Windows Management Instrumentation Feature of Windows The Windows Management BY SUSAN EISENHARD Exploring the Windows Management Instrumentation Feature of Windows 2000 The Windows Management Instrumentation feature of Windows 2000 provides a common scripting interface that allows you to access system

More information

HR-Lite Database & Web Service Setup Guide

HR-Lite Database & Web Service Setup Guide HR-Lite Database & Web Service Setup Guide Version: 1.00 HR21 Limited All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic or mechanical,

More information

PassMark Software. White paper Using BurnInTest in a production line environment by. Edition: 1.0. BurnInTest Version: 3.2

PassMark Software. White paper Using BurnInTest in a production line environment by. Edition: 1.0. BurnInTest Version: 3.2 White paper Using BurnInTest in a production line environment by Edition: 1.0 Date: 18/July/2003 BurnInTest Version: 3.2 BurnInTest is a trademark of software BurnInTest in a production line environment

More information

Virtual CD TS 1 Introduction... 3

Virtual CD TS 1 Introduction... 3 Table of Contents Table of Contents Virtual CD TS 1 Introduction... 3 Document Conventions...... 4 What Virtual CD TS Can Do for You...... 5 New Features in Version 10...... 6 Virtual CD TS Licensing......

More information

Tzunami Inc. Evaluation Guide

Tzunami Inc. Evaluation Guide Tzunami Inc. Evaluation Guide Using K-Wise Deployer for Rapid Content Migration into Microsoft SharePoint Products and Technologies Rapid migration solutions for Microsoft SharePoint Portal Server 2003

More information

ms-help://ms.technet.2004apr.1033/win2ksrv/tnoffline/prodtechnol/win2ksrv/howto/grpolwt.htm

ms-help://ms.technet.2004apr.1033/win2ksrv/tnoffline/prodtechnol/win2ksrv/howto/grpolwt.htm Page 1 of 17 Windows 2000 Server Step-by-Step Guide to Understanding the Group Policy Feature Set Operating System Abstract Group Policy is the central component of the Change and Configuration Management

More information

R9.7 erwin License Server:

R9.7 erwin License Server: R9.7 erwin License Server: Installation and Setup This is a quick guide to setting-up a erwin DM License Server. NOTES: - Concurrent licensing is available for only erwin r8.2 and later releases! - Concurrent

More information

DXLab Launcher 1.9.0

DXLab Launcher 1.9.0 Overview...2 DXLab Prerequisites...3 Download and Installation...4 Configuration... 10 Controlling Applications... 14 Installing, Upgrading, and Restoring DXLab Applications... 17 Saving and Restoring

More information

Sage Residential Management Versions 9.5 through Installation Guide

Sage Residential Management Versions 9.5 through Installation Guide Sage Residential Management Versions 9.5 through 14.1 Installation Guide This is a publication of Sage Software, Inc. Copyright 2014. Sage Software, Inc. All rights reserved. Sage, the Sage logos, and

More information

Inteset Secure Lockdown ver. 2.0 Internet Explorer Edition (8-11)

Inteset Secure Lockdown ver. 2.0 Internet Explorer Edition (8-11) Inteset Secure Lockdown ver. 2.0 Internet Explorer Edition (8-11) for Windows User Guide Contents User Guide...1 Welcome...3 System Requirements...4 Use with Tablets and Touch Devices...4 Installation...5

More information

Embarcadero AppWave Browser

Embarcadero AppWave Browser Product Documentation Embarcadero AppWave Browser Apps User Guide Version 2.0.1 Published July 14, 2011 2011 Embarcadero Technologies, Inc. Embarcadero, the Embarcadero Technologies logos, and all other

More information

solidthinking Compose Installation Guide

solidthinking Compose Installation Guide Installation Guide This document describes the installation procedure for Compose 2017.3 on Windows and Linux platforms. Main Installer for Windows To execute the installation, double-click Compose_2017.3_Win64.exe.

More information

Networks: Access Management Windows NT Server Class Notes # 10 Administration October 24, 2003

Networks: Access Management Windows NT Server Class Notes # 10 Administration October 24, 2003 Networks: Access Management Windows NT Server Class Notes # 10 Administration October 24, 2003 In Windows NT server, the user manager for domains is the primary administrative tool for managing user accounts,

More information

EMS Installation. Workstation Requirements CHAPTER. EMS Lite (Windows 95/98) EMS NT (Windows NT 4.0)

EMS Installation. Workstation Requirements CHAPTER. EMS Lite (Windows 95/98) EMS NT (Windows NT 4.0) CHAPTER 2 EMS Installation This chapter provides instructions for installing the Element Management System (EMS) software on a user workstation. Workstation Requirements The following sections list the

More information

Linux Essentials. Smith, Roderick W. Table of Contents ISBN-13: Introduction xvii. Chapter 1 Selecting an Operating System 1

Linux Essentials. Smith, Roderick W. Table of Contents ISBN-13: Introduction xvii. Chapter 1 Selecting an Operating System 1 Linux Essentials Smith, Roderick W. ISBN-13: 9781118106792 Table of Contents Introduction xvii Chapter 1 Selecting an Operating System 1 What Is an OS? 1 What Is a Kernel? 1 What Else Identifies an OS?

More information

APPENDIX B: INSTALLATION AND SETUP

APPENDIX B: INSTALLATION AND SETUP APPENDIX B: INSTALLATION AND SETUP Page A. Overview... B:1 How do I install and setup ICMS?... B:1 Do I need special security rights to install ICMS?... B:1 Installation Basics... B:1 How do I get a quick

More information

Setting up the ViewSonic SC-T45 as a media player

Setting up the ViewSonic SC-T45 as a media player Setting up the ViewSonic SC-T45 as a media player Although the ViewSonic SC-T45 computer makes a good media player for DisplayIt! and DisplayIt!X, it requires some special configuration steps so that it

More information

Windows 7 Basic Computer Course

Windows 7 Basic Computer Course Windows 7 Basic Computer Course Windows 7 is the latest user operating system. This course covers everything you need to know about the current technology. FIRST TIME COMPUTER USERS If you have never used

More information

A+ Guide to Managing and Maintaining your PC, 6e. Chapter 2 Introducing Operating Systems

A+ Guide to Managing and Maintaining your PC, 6e. Chapter 2 Introducing Operating Systems A+ Guide to Managing and Maintaining your PC, 6e Chapter 2 Introducing Operating Systems Objectives Learn about the various operating systems and the differences between them Learn how an OS interfaces

More information

Live Connect. Live Connect

Live Connect. Live Connect 2 Chapter 9 - Introduction Fig. 9.1 Brief Overview Pop-up Window provides single machine interface to give you full control over your endpoints with minimal end user interruption. It is built to help you

More information

To install the Texas Instruments CCS Compiler, follow these steps: 1. Go to the TI Wiki page (http://processors.wiki.ti.com/index.

To install the Texas Instruments CCS Compiler, follow these steps: 1. Go to the TI Wiki page (http://processors.wiki.ti.com/index. Installation Guide This document describes the installation procedure for Embed 2017. Main Installer Before you begin the installation, you must install the following on your computer: Texas Instruments

More information

Installing and Updating GEMS

Installing and Updating GEMS Installing and Updating GEMS To download and install GEMS for the first time to the hard drive of any desktop or to a network server, see Full Program Installation Desktop or Network. If you currently

More information

Macintosh OS X 10.3 Tips

Macintosh OS X 10.3 Tips Macintosh OS X 10.3 Tips Copyright 2004 Oliver Jovanovic Mail Tips Mail ~/Library/Mail stores most mail files ~/Library/Mail/LSMMap file stores junk mail training ~/Library/Mail/Mailboxes stores mail (can

More information

PrimalScript. Your First 20 Minutes. Your First 20 Minutes. Start here to be productive with PrimalScript in just 20 minutes.

PrimalScript. Your First 20 Minutes. Your First 20 Minutes. Start here to be productive with PrimalScript in just 20 minutes. Your First 20 Minutes Contents Before Installing PrimalScript Install PrimalScript Launch PrimalScript Set Script and Project Folders Create a New Script Insert WMI Code Use PrimalSense Run a Script with

More information

Release Notes. devicetrust for Windows

Release Notes. devicetrust for Windows devicetrust 18.1.110 for Windows Welcome to the 18.1 release of devicetrust. This release includes a new auto-update feature which can be used to automatically update your devicetrust Windows Clients,

More information

Getting started 7. Setting properties 23

Getting started 7. Setting properties 23 Contents 1 2 3 Getting started 7 Introduction 8 Installing Visual Basic 10 Exploring the IDE 12 Starting a new project 14 Adding a visual control 16 Adding functional code 18 Saving projects 20 Reopening

More information

Abila MIP. Human Resource Management Installation Guide

Abila MIP. Human Resource Management Installation Guide Human Resource Management Installation Guide This is a publication of Abila, Inc. Version 2017.2 2017 Abila, Inc. and its affiliated entities. All rights reserved. Abila, the Abila logos, and the Abila

More information

Recent Operating System Class notes 04 Managing Users on Windows XP March 22, 2004

Recent Operating System Class notes 04 Managing Users on Windows XP March 22, 2004 Recent Operating System Class notes 04 Managing Users on Windows XP March 22, 2004 You log into a system to notify the system who you are. When you log off, any files you have opened are cleaned up, and

More information

A+ Guide to Managing & Maintaining Your PC, 8th Edition. Chapter 17 Windows Resources on a Network

A+ Guide to Managing & Maintaining Your PC, 8th Edition. Chapter 17 Windows Resources on a Network Chapter 17 Windows Resources on a Network Objectives Learn how to support some client/server applications Learn how to share and secure files and folders on the network Learn how to troubleshoot network

More information

DEKOMOS. Browser and Editor Reference. Pinnacle Systems, Inc. 280 N. Bernardo Avenue Mountain View, CA 94043

DEKOMOS. Browser and Editor Reference. Pinnacle Systems, Inc. 280 N. Bernardo Avenue Mountain View, CA 94043 DEKOMOS Browser and Editor Reference Pinnacle Systems, Inc. 280 N. Bernardo Avenue Mountain View, CA 94043 April 2004 Preface This Reference includes instruction and reference information for configuring

More information

PrimoPDF Enterprise User Guide, Version 5.0

PrimoPDF Enterprise User Guide, Version 5.0 Table of Contents Installation... 3 Reference Links... 3 Uninstallation... 4 Creating PDF Documents... 4 PrimoPDF Document Settings... 5 PDF Creation Profiles... 5 Document Properties... 6 PDF Security...

More information

Password Reset Utility. Configuration

Password Reset Utility. Configuration Password Reset Utility Configuration 1 Table of Contents 1. Uninstalling Legacy Password Reset... 2 2. Password Reset Utility: How to deploy and configure via Group Policy... 2 3. Configuring Group Policy

More information

Kinetica 5.1 Kinetica Installation Guide

Kinetica 5.1 Kinetica Installation Guide Kinetica 5.1 Kinetica Installation Guide 2012 Thermo Fisher Scientific Inc. All rights reserved. The information in this document is subject to change without notice and should not be construed as a commitment

More information

Client Installation and User's Guide

Client Installation and User's Guide IBM Tivoli Storage Manager FastBack for Workstations Version 7.1 Client Installation and User's Guide SC27-2809-03 IBM Tivoli Storage Manager FastBack for Workstations Version 7.1 Client Installation

More information

Copyright. Trademarks Attachmate Corporation. All rights reserved. USA Patents Pending. WRQ ReflectionVisual Basic User Guide

Copyright. Trademarks Attachmate Corporation. All rights reserved. USA Patents Pending. WRQ ReflectionVisual Basic User Guide PROGRAMMING WITH REFLECTION: VISUAL BASIC USER GUIDE WINDOWS XP WINDOWS 2000 WINDOWS SERVER 2003 WINDOWS 2000 SERVER WINDOWS TERMINAL SERVER CITRIX METAFRAME CITRIX METRAFRAME XP ENGLISH Copyright 1994-2006

More information

Windows NT Server Printer Driver Upgrade Instructions

Windows NT Server Printer Driver Upgrade Instructions Windows NT Server Printer Driver Upgrade Instructions The steps detailed below describe the most reliable method to upgrade printer driver versions after v1.6.0227a on a Windows NT 4.0 Server that is shared

More information

Batch Eligibility Long Term Care claims

Batch Eligibility Long Term Care claims DXC Technology Provider Electronic Solutions software lets Connecticut Medical Assistance Program providers verify patient s eligibility and submit and correct claims for services all electronically. The

More information

Print Audit 6. Print Audit 6 Documentation Apr :07. Version: Date:

Print Audit 6. Print Audit 6 Documentation Apr :07. Version: Date: Print Audit 6 Version: Date: 37 21-Apr-2015 23:07 Table of Contents Browse Documents:..................................................... 3 Database Documentation.................................................

More information

Manually Run Ad Logon Script As Administrator Group Policy

Manually Run Ad Logon Script As Administrator Group Policy Manually Run Ad Logon Script As Administrator Group Policy Startup Scripts for _Group Policy object_ : Lists all the scripts that currently are assigned By default, members of the Domain Administrators

More information

NetSupport Protect User Guide

NetSupport Protect User Guide NetSupport Protect User Guide All Rights Reserved 2011 NetSupport Ltd 1 Contents Welcome to NetSupport Protect...3 Product Overview...4 Key Features at a Glance...5 Installation...7 System Requirements...7

More information

Zend Studio 3.0. Quick Start Guide

Zend Studio 3.0. Quick Start Guide Zend Studio 3.0 This walks you through the Zend Studio 3.0 major features, helping you to get a general knowledge on the most important capabilities of the application. A more complete Information Center

More information

Using the Dev C++ Compiler to Create a Program

Using the Dev C++ Compiler to Create a Program This document assumes that you have already installed the Dev-C++ Compiler on your computer and run it for the first time to setup the initial configuration. USING DEV-C++ TO WRITE THE POPULAR "HELLO WORLD!"

More information

Sage Fixed Assets. Network Installation Guide for Administrators. for Depreciation, Tracking, Planning, and Reporting

Sage Fixed Assets. Network Installation Guide for Administrators. for Depreciation, Tracking, Planning, and Reporting for Depreciation, Tracking, Planning, and Reporting Network Installation 2014.1 Guide for Administrators Network Installation Guide Version 2014.1 Contents Chapter 1. Introduction Supported Operating Environments..........................................................

More information

Policy Settings for Windows Server 2003 (including SP1) and Windows XP (including SP2)

Policy Settings for Windows Server 2003 (including SP1) and Windows XP (including SP2) Web 2 Policy Settings for (including SP1) and XP (including SP2) This document was written by Conan Kezema. and XP together introduce more than 270 new administrative template policy settings for you to

More information

bs^ir^qfkd=obcib`qflk= prfqb=clo=u

bs^ir^qfkd=obcib`qflk= prfqb=clo=u bs^ir^qfkd=obcib`qflk= prfqb=clo=u cçê=u=táåççïë=póëíéãë cçê=lééåsjp=eçëíë cçê=f_j=eçëíë 14.1 bî~äì~íáåö=oéñäéåíáçå=u This guide provides a quick overview of features in Reflection X. This evaluation guide

More information

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions

Click Studios. Passwordstate. Remote Session Launcher. Installation Instructions Passwordstate Remote Session Launcher Installation Instructions This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise

More information

Libraries. Multi-Touch. Aero Peek. Sema Foundation 10 Classes 2 nd Exam Review ICT Department 5/22/ Lesson - 15

Libraries. Multi-Touch. Aero Peek. Sema Foundation 10 Classes 2 nd Exam Review ICT Department 5/22/ Lesson - 15 10 Classes 2 nd Exam Review Lesson - 15 Introduction Windows 7, previous version of the latest version (Windows 8.1) of Microsoft Windows, was produced for use on personal computers, including home and

More information

Channel 4. User Manual. Version 2.0

Channel 4. User Manual. Version 2.0 Channel 4 User Manual Version 2.0 Table Of Contents Introduction... 1 System Requirements... 2 Installation... 3 Creating a Program... 7 Uploading a Program... 8 Support... 8 Introduction Evsl s Channel

More information

Client Installation and User's Guide

Client Installation and User's Guide IBM Tivoli Storage Manager FastBack for Workstations Version 7.1.1 Client Installation and User's Guide SC27-2809-04 IBM Tivoli Storage Manager FastBack for Workstations Version 7.1.1 Client Installation

More information

SQLBase. Starter Guide

SQLBase. Starter Guide SQLBase Starter Guide 20-2905-1004 Trademarks Centura, Centura net.db, Centura Ranger, the Centura logo, Centura Web Developer, Gupta, the Gupta logo, Gupta Powered, the Gupta Powered logo, Fast Facts,

More information

10ZiG Technology. Thin Desktop Quick Start Guide

10ZiG Technology. Thin Desktop Quick Start Guide 10ZiG Technology Thin Desktop Quick Start Guide 2010 05 20 Introduction This document is intended as a quick start guide for installing Thin Desktop. After reading this document, you will know how to:

More information

WINDOWS XP. iii. Contents

WINDOWS XP. iii. Contents C O N T E N T S Preface INTRODUCTION TO 1 Chapter 1 Navigating Windows XP 3 Launching Windows 3 Working with the Mouse 4 Moving the Mouse 4 Clicking 6 Double-clicking 6 Right-clicking 6 Dragging and Dropping

More information

SuiteFactory on the Web

SuiteFactory on the Web SuiteFactory on the Web This document is meant to be a guide to be used, (at least the first time), along with a CCI employee to get you started and to point out important facts and features. Prerequisites

More information

Windows Embedded Compact Test Kit User Guide

Windows Embedded Compact Test Kit User Guide Windows Embedded Compact Test Kit User Guide Writers: Randy Ocheltree, John Hughes Published: October 2011 Applies To: Windows Embedded Compact 7 Abstract The Windows Embedded Compact Test Kit (CTK) is

More information

Network License Manager and Client Toolchain. Installation Guide

Network License Manager and Client Toolchain. Installation Guide Network License Manager and Client Toolchain Contents This guide is intended to help you to install HEW and the Network License Manager and obtain a license key (if entitled). It will cover: 1. Installing

More information

Netwrix Auditor. Virtual Appliance and Cloud Deployment Guide. Version: /25/2017

Netwrix Auditor. Virtual Appliance and Cloud Deployment Guide. Version: /25/2017 Netwrix Auditor Virtual Appliance and Cloud Deployment Guide Version: 9.5 10/25/2017 Legal Notice The information in this publication is furnished for information use only, and does not constitute a commitment

More information

User Document. Adobe Acrobat for Tivoli Software Distribution

User Document. Adobe Acrobat for Tivoli Software Distribution User Document i User Document Table of Contents Product Name....................................................1 Document Overview............................................. 1 References.......................................................1

More information

Installing Intellicus DotNet Client on Windows. Version: 16.0

Installing Intellicus DotNet Client on Windows. Version: 16.0 Installing Intellicus DotNet Client on Windows Version: 16.0 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not

More information

Sabre Customer Virtual Private Network Launcher (SCVPNLauncher)

Sabre Customer Virtual Private Network Launcher (SCVPNLauncher) Sabre Customer Virtual Private Network Launcher (SCVPNLauncher) User s Guide Sabre Travel Network This document provides detailed information for the install/uninstall, operation, configuration and troubleshooting

More information

Administrator for Enterprise Clients: User s Guide. Second Edition

Administrator for Enterprise Clients: User s Guide. Second Edition Administrator for Enterprise Clients: User s Guide Second Edition The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2002. Administrator for Enterprise Clients: User s

More information

Last Updated: October 12, Learning Ally ReadHear by gh for PC, Quick Start Guide

Last Updated: October 12, Learning Ally ReadHear by gh for PC, Quick Start Guide Learning Ally ReadHear by gh for PC Quick Start Guide Last Updated: October 12, 2012 1 Page Table of Contents Introduction...3 What is Learning Ally ReadHear?...3 Overview...3 Minimum PC System Requirements...3

More information

Contents. 1 Introduction... 2 Introduction to Installing and Configuring LEI... 4 Upgrading NotesPump to LEI...

Contents. 1 Introduction... 2 Introduction to Installing and Configuring LEI... 4 Upgrading NotesPump to LEI... Contents 1 Introduction... Organization of this Manual... Related Documentation... LEI and DECS Documentation... Other Documentation... Getting Started with Lotus Enterprise Integrator... 2 Introduction

More information

Getting started 7. Setting properties 23

Getting started 7. Setting properties 23 Contents 1 2 3 Getting started 7 Introducing Visual Basic 8 Installing Visual Studio 10 Exploring the IDE 12 Starting a new project 14 Adding a visual control 16 Adding functional code 18 Saving projects

More information

NET+Works with GNU Tools Getting Started Guide

NET+Works with GNU Tools Getting Started Guide NET+Works with GNU Tools Getting Started Guide NET+Works with GNU Tools Getting Started Guide Operating system/version: 6.3 Part number/version: 90000718_C Release date: March 2006 www.digi.com 2006 Digi

More information

Quick Start Guide. Kaseya 2

Quick Start Guide. Kaseya 2 LiveConnect Quick Start Guide Kaseya 2 February 13, 2010 About Kaseya Kaseya is a global provider of IT automation software for IT Solution Providers and Public and Private Sector IT organizations. Kaseya's

More information

ORACLE SQL DEVELOPER

ORACLE SQL DEVELOPER ORACLE SQL DEVELOPER INTRODUCTION TO ORACLE SQL DEVELOPER Oracle SQL Developer is an Integrated development environment (IDE) for working with SQL in Oracle databases. Oracle Corporation provides this

More information

HP QuickTest Professional

HP QuickTest Professional HP QuickTest Professional Software Version: 10.00 Installation Guide Manufacturing Part Number: T6513-90038 Document Release Date: January 2009 Software Release Date: January 2009 Legal Notices Warranty

More information

Inteset Secure Lockdown ver. 2.0 Chrome Edition

Inteset Secure Lockdown ver. 2.0 Chrome Edition Inteset Secure Lockdown ver. 2.0 Chrome Edition for Windows User Guide Contents User Guide... 1 Welcome... 3 System Requirements... 4 Use with Tablets and Touch Devices... 4 Installation... 5 Product Activation...

More information

Contents. Notes Mail Link Page 1

Contents. Notes Mail Link Page 1 Contents Contents... 1 About Notes Mail Link 6... 2 System requirements... 2 Installing Notes Mail Link - Overview... 3 Install Notes Mail Link... 3 Upgrade to newer version of Notes Mail Link... 3 New

More information

Appendix B. Install Microsoft Personal Web Server

Appendix B. Install Microsoft Personal Web Server Appendix B Install Microsoft Personal Web Server 2 How to Do Everything with FrontPage 2002 When you construct a Web site, you can either designate the site as disk-based or server-based. A disk-based

More information

Fiery Network Controller for DocuColor 5065 SERVER & CONTROLLER SOLUTIONS. Printing from Windows

Fiery Network Controller for DocuColor 5065 SERVER & CONTROLLER SOLUTIONS. Printing from Windows Fiery Network Controller for DocuColor 5065 SERVER & CONTROLLER SOLUTIONS Printing from Windows 2005 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for

More information

ZENworks 2017 Update 1 Quick Reference - Bundle Features and Options

ZENworks 2017 Update 1 Quick Reference - Bundle Features and Options ZENworks 2017 Update 1 Quick Reference - Bundle Features and Options July 2017 The information in this document helps you to quickly and easily find the information related to various bundle features and

More information

Empty the Recycle Bin Right Click the Recycle Bin Select Empty Recycle Bin

Empty the Recycle Bin Right Click the Recycle Bin Select Empty Recycle Bin Taskbar Windows taskbar is that horizontal strip at the bottom of your desktop where your open files and programs appear. It s where the Start button lives. Below are improvements to the taskbar that will

More information

A mandatory user profile is created by an administrator and assigned to one or more users to create a consistent user profile.

A mandatory user profile is created by an administrator and assigned to one or more users to create a consistent user profile. Mandatory profile Introduction On computers running Windows 2000, user profiles automatically create and maintain the desktop settings for each user's work environment on the local computer. A user profile

More information

StrikeRisk v5.0 Getting started

StrikeRisk v5.0 Getting started StrikeRisk v5.0 Getting started Contents 1 Introduction 1 2 Installing StrikeRisk 2 7 2.1 System Requirements 2 2.2 Installing StrikeRisk 2 5 2.3 Installation troubleshooting 6 2.4 Uninstalling StrikeRisk

More information

Netherworks Studios. Start DAZ Studio 3 and simply navigate to "NWS Scripts" in your content folder. Run the "Activate Folder Favorites" script.

Netherworks Studios. Start DAZ Studio 3 and simply navigate to NWS Scripts in your content folder. Run the Activate Folder Favorites script. Folder Favorites Guide Netherworks Studios Overview: Netherworks' Folder Favorites provides an easy and concise way to navigate through content folders (View Folders List or Tree views) by utilizing a

More information

USER'S GUIDE. 31 March 2017

USER'S GUIDE. 31 March 2017 USER'S GUIDE Copyright 1981-2017 Netop Business Solutions A/S. All Rights Reserved. Portions used under license from third parties. Please send any comments to: Netop Business Solutions A/S Bregnerodvej

More information

PhotoPDF User Guide. PhotoPDF. Photo to PDF Converter

PhotoPDF User Guide. PhotoPDF. Photo to PDF Converter PhotoPDF Photo to PDF Converter PhotoPDF is a batch-processing tool to convert photos into PDF file. PhotoPDF provides three modes of conversion: Batch Convert, Photos Merge and Thumbnail Page. PhotoPDF

More information

Océ Account Center. User manual

Océ Account Center. User manual Océ Account Center User manual Océ-Technologies B.V. Copyright 2004, Océ-Technologies B.V. Venlo, The Netherlands All rights reserved. No part of this work may be reproduced, copied, adapted, or transmitted

More information

PRPC Personal Edition Installation Guide 6.3 SP1

PRPC Personal Edition Installation Guide 6.3 SP1 PRPC Personal Edition Installation Guide 6.3 SP1 Copyright 2012 Pegasystems Inc., Cambridge, MA All rights reserved. This document describes products and services of Pegasystems Inc. It may contain trade

More information

8 MANAGING SHARED FOLDERS & DATA

8 MANAGING SHARED FOLDERS & DATA MANAGING SHARED FOLDERS & DATA STORAGE.1 Introduction to Windows XP File Structure.1.1 File.1.2 Folder.1.3 Drives.2 Windows XP files and folders Sharing.2.1 Simple File Sharing.2.2 Levels of access to

More information