Overview. Program Start VB SCRIPT SIGNER. IT Services

Size: px
Start display at page:

Download "Overview. Program Start VB SCRIPT SIGNER. IT Services"

Transcription

1 Overview It is sometimes much easier (and easier to maintain) to use a Visual Basic Script on Windows to perform system functions rather than coding those functions in C++ (WMI is a good example of this). Consequently, there are a number of products that we have developed and maintain that internally use VBS files to perform Windows system functions. We sign all of our products (including VBS scripts) with a DSG VeriSign certificate. If you write scripts that are run on Windows computers you should seriously consider signing those scripts. The VBScript Signing Tool will make this task easier and well as generate C and RealBasic Code for you that you can include in projects that need to run VBS scripts. Program Start When you start the VB Script Signer, you will see the main program window: May 11,

2 As you can see from the screen shot, the tool is very simple, so the best way to explain how it works is to present the information as a step by step tutorial. Step 1 Identify the location of SIGNCODE.EXE Click on the "SignCode.exe Dir" toolbar icon ( contains SIGNCODE.EXE: ) and navigate to the directory that SIGNCODE.EXE is distributed by Microsoft in the.net SDK. Step 2 Identify the location of your VerSign certificate Clicking on the "Cert Dir" ( VeriSign certificate: ) toolbar icon and navigate to the directory that contains your May 11,

3 Step 3 Identify the location of your private key Clicking on the "Private Key Dir" ( your VeriSign certificate: ) toolbar icon and navigate to the directory that contains May 11,

4 Once you have defined all certificate directories the "Save Dirs" toolbar icon will switch from disabled: to enabled:. Now would be a good time to click on the "Save Dirs" icon. The VBS Script Signer will save your preferences to the registry so that the next time you run the VBS Script Signer, the directory entries will be pre populated with your selections: Step 4 Select the VBS script to sign Click on the "VBS Script" toolbar icon ( ) to browse to the VBS script that you want to sign: Once you select a VBS file, the "Action" toolbar icons change from disabled ( ) to enabled ( ). The icons are: May 11,

5 This will create source code that will be displayed in the "Code" text box that you can paste into a C program which will create a text string that you can output to a temporary file, and run. This will create source code that will be displayed in the "Code" text box that you can paste into either a Visual Basic or REALbasic program which will create a text string that you can output to a temporary file, and run. This will display a standard "Save As" dialog box that will allow you to save the signed VBS script. Clicking on any of these icons will launch SIGNCODE.EXE which will present a window where you are prompted to enter your password: Enter your password and click "OK" to sign the VBS file. May 11,

6 Output Details The Sample Input VBS file strcomputer = "." Set objwmiservice = GetObject("winmgmts:\\" & strcomputer & "\root\cimv2") Set colitems = objwmiservice.execquery( _ "SELECT * FROM Win32_BootConfiguration",,48) For Each objitem in colitems Next Wscript.Echo " " Wscript.Echo "Win32_BootConfiguration instance" Wscript.Echo " " Wscript.Echo "BootDirectory: " & objitem.bootdirectory The sample script simply displays the Win32 Boot Directory (usually C:\Windows). Generate C Code After the "C Code" toolbar icon is pressed, the code that is created is displayed in the "Code" text box: May 11,

7 You can copy this text to the clipboard and paste it into any C or CPP file. Here is some pseudo code that demonstrates how to use this function: char *scontents = NULL; // Build the VBS file contents scontents = BuildScript(); // Output the contents to a temporary VBS file // Run cscript.exe and pass it the path to the temporary VBS file // Examine the output of the script // Free the contents buffer free(scontents); Generate Basic Code After the "Basic Code" toolbar icon is pressed, the code that is created is displayed in the "Code" text box: May 11,

8 You can copy this text to the clipboard and paste it into any Basic project. Here is some pseudo code that demonstrates how to use this function: dim scontents as string // Build the VBS file contents scontents = BuildScript(); // Output the contents to a temporary VBS file // Run cscript.exe and pass it the path to the temporary VBS file // Examine the output of the script Save the Signed VBS Script to a File After "Save VBS" is clicked and you specify the file path, the VBS Script Signer will save the signed script. Here is what the example input script looks like after signing: strcomputer = "." Set objwmiservice = GetObject("winmgmts:\\" & strcomputer & "\root\cimv2") Set colitems = objwmiservice.execquery( _ "SELECT * FROM Win32_BootConfiguration",,48) For Each objitem in colitems Next Wscript.Echo " " Wscript.Echo "Win32_BootConfiguration instance" Wscript.Echo " " Wscript.Echo "BootDirectory: " & objitem.bootdirectory '' SIG '' Begin signature block '' SIG '' MIIVGQYJKoZIhvcNAQcCoIIVCjCCFQYCAQExDjAMBggq '' SIG '' hkig9w0cbquamgygcisgaqqbgjccaqsgwdbwmdigcisg '' SIG '' AQQBgjcCAR4wJAIBAQQQTvApFpkntU2P5azhDxfrqwIB '' SIG '' AAIBAAIBAAIBAAIBADAgMAwGCCqGSIb3DQIFBQAEEATG '' SIG '' Z83JTjbDYwxTZDjzuPKgghECMIIDejCCAmKgAwIBAgIQ '' SIG '' OCXX+vhhr570kOcmtdZa1TANBgkqhkiG9w0BAQUFADBT '' SIG '' MQswCQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24s '' SIG '' IEluYy4xKzApBgNVBAMTIlZlcmlTaWduIFRpbWUgU3Rh May 11,

9 '' SIG '' bxbpbmcgu2vydmljzxmgq0ewhhcnmdcwnje1mdawmdaw '' SIG '' WhcNMTIwNjE0MjM1OTU5WjBcMQswCQYDVQQGEwJVUzEX '' SIG '' MBUGA1UEChMOVmVyaVNpZ24sIEluYy4xNDAyBgNVBAMT '' SIG '' K1ZlcmlTaWduIFRpbWUgU3RhbXBpbmcgU2VydmljZXMg '' SIG '' U2lnbmVyIC0gRzIwgZ8wDQYJKoZIhvcNAQEBBQADgY0A '' SIG '' MIGJAoGBAMS18lIVvIiGYCkWSlsvS5Frh5HzNVRYNerR '' SIG '' Nl5iTVJRNHHCe2YdicjdKsRqCvY32Zh0kfaSrrC1dpbx '' SIG '' qupjrucuawustksrjo5ysovub+qalpicqljzzulzlcb1 Many more lines follow until '' SIG '' End signature block You can run the script as you would normally (cscript.exe, or wscript). When you right click on the VBS file and choose "Properties you should notice a new tab "Digital Signatures". Selecting the tab will allow you to examine the signing details: May 11,

10 May 11,

Microsoft System Center Configuration Manager Dell Factory Integration

Microsoft System Center Configuration Manager Dell Factory Integration Microsoft System Center Manager Dell Factory Integration User Guide September 2018 to ConfigMgr OSD in Dell Factories Administrators of Microsoft System Center Manager (referenced as Manager or ConfigMgr

More information

Associating Run As Accounts in Operations Manager 2007

Associating Run As Accounts in Operations Manager 2007 Associating Run As Accounts in Operations Manager 2007 A short tutorial on how to associate a Run As Account to a monitor in Operations Manager 2007 Stefan Stranger, MOM MVP http://weblog.stranger.nl December,

More information

Microsoft System Center Configuration Manager 2012 Dell Factory Integration

Microsoft System Center Configuration Manager 2012 Dell Factory Integration Microsoft System Center Manager 2012 Dell Factory Integration User Guide January 2017 to ConfigMgr 2012 OSD in Dell Factories Administrators of Microsoft System Center Manager 2012 (referenced as Manager

More information

The name of this chapter is Dealing with Devices, but of

The name of this chapter is Dealing with Devices, but of Dealing with Devices CHAPTER W2 The name of this chapter is Dealing with Devices, but of course we never deal with our devices directly. Instead, we delegate that job to Windows, and it takes care of the

More information

Deploying Dell Open Manage Server Administrator from IT Assistant 7.0

Deploying Dell Open Manage Server Administrator from IT Assistant 7.0 Deploying Dell Open Manage Server Administrator from IT Assistant 7.0 Enterprise Systems Group (ESG) Dell OpenManage Systems Management Dell White Paper By Annapurna Dasari Annapurna_Dasari@dell.com May

More information

Disables all services configured as manual start. Among other things, this prevents Power Users from being able to start these services.

Disables all services configured as manual start. Among other things, this prevents Power Users from being able to start these services. GO Software Pty Limited Map: 27 Tacoma Blvd, Pasadena SA 5042 Phn: 0403-063-991 Fax: none ABN: 54-008-044-906 ACN: 008-044-906 Eml: support@gosoftware.com.au Web: www.gosoftware.com.au VBScript Scripts

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

Hands-On Lab. Windows Azure Virtual Machine Roles. Lab version: Last updated: 12/14/2010. Page 1

Hands-On Lab. Windows Azure Virtual Machine Roles. Lab version: Last updated: 12/14/2010. Page 1 Hands-On Lab Windows Azure Virtual Machine Roles Lab version: 2.0.0 Last updated: 12/14/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING AND DEPLOYING A VIRTUAL MACHINE ROLE IN WINDOWS AZURE...

More information

How to Import a Certificate When Using Microsoft Windows OS

How to Import a Certificate When Using Microsoft Windows OS How to Import a Certificate When Using Microsoft Windows OS This document explains the process of importing your digital certificate for use in Microsoft Internet Explorer (IE) and/or Mozilla Firefox.

More information

Compact Disc 1. Send us your feedback «Previous Next» Microsoft Windows 2000 Scripting Guide

Compact Disc 1. Send us your feedback «Previous Next» Microsoft Windows 2000 Scripting Guide Compact Disc 1 Introduction Welcome to the. As computers and computer networks continue to grow larger and more complex, system administrators continue to face new challenges. Not all that long ago, system

More information

How to detect the CPU and OS Architecture

How to detect the CPU and OS Architecture How to detect the CPU and OS Architecture The client I am working for now, has both XP and Windows 7. XP is 32 bits and Windows 7 is 64 bits. To avoid that I have to make the packages twice, I make both

More information

WMI log collection using a non-admin domain user

WMI log collection using a non-admin domain user WMI log collection using a non-admin domain user To collect WMI logs from a domain controller in EventLog Analyer, it is necessary to add a domain admin account of that domain in it. Alternatively, you

More information

Unified Write Filter Configuration

Unified Write Filter Configuration Unified Write Filter Configuration In Windows Embedded Standard 8, Unified Write Filter (UWF) protects volumes from write operations. UWF intercepts write actions and redirects them to overlay storage.

More information

Configuring an IMAP4 or POP3 Journal Account for Microsoft Exchange Server 2003

Configuring an IMAP4 or POP3 Journal Account for Microsoft Exchange Server 2003 Configuring an IMAP4 or POP3 Journal Account for Microsoft Exchange Server 2003 This article refers to Microsoft Exchange Server 2003. As of April 8, 2014, Microsoft no longer issues security updates for

More information

Direct Certification FTP Setup Instructions

Direct Certification FTP Setup Instructions Direct Certification FTP Setup Instructions Rev. 13-000 FOOD & NUTRITION MANAGEMENT SYSTEMS This instruction sheet provides instructions for installing our Direct Certification Automated FTP software to

More information

Dell OpenManage Essentials v1.1 Supporting Dell Client Devices

Dell OpenManage Essentials v1.1 Supporting Dell Client Devices Dell OpenManage Essentials v1.1 Supporting Dell Client Devices This Dell technical white paper provides the required information about Dell client devices (OptiPlex, Precision, Latitude) support in OpenManage

More information

Creating and Reading SecurDisc Discs. SecurDisc - the technology 2

Creating and Reading SecurDisc Discs. SecurDisc - the technology 2 T U Creating and Reading SecurDisc Discs T O R I A L SecurDisc - the technology 2 Requirements 2 Creating SecurDisc discs: Nero Express 2 Reading SecurDisc discs: InCD or InCD Reader 3 Reading copy-protected

More information

User Agent Preparing the Windows Environment and Installing the User Agent. How-To

User Agent Preparing the Windows Environment and Installing the User Agent. How-To User Agent 1.1.5 Preparing the Windows Environment and Installing the User Agent How-To CONTENTS Introduction to the User Agent... 2 Selecting the User Account to Run the User Agent... 3 Setting Access

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

Dell OpenManage Essentials v2.0 Support for Dell Client Devices

Dell OpenManage Essentials v2.0 Support for Dell Client Devices Dell OpenManage Essentials v2.0 Support for Dell Client Devices This Dell technical white paper provides the required information about Dell client devices (OptiPlex, Precision, Latitude, and Venue 11

More information

OASYS OASYS WORKSTATION INSTALLATION GUIDE

OASYS OASYS WORKSTATION INSTALLATION GUIDE OASYS OASYS WORKSTATION INSTALLATION GUIDE VERSION 8.0 DECEMBER 21, 2017 Copyright 2017 DTCC. All rights reserved. This work (including, without limitation, all text, images, logos, compilation and design)

More information

Oracle Hyperion Financial Data Quality Management, Fusion Edition ERP Source Adapter for SAP. Readme. Purpose. Overview.

Oracle Hyperion Financial Data Quality Management, Fusion Edition ERP Source Adapter for SAP. Readme. Purpose. Overview. Oracle Hyperion Financial Data Quality Management, Fusion Edition ERP Source Adapter for SAP Release FIN-C Readme Purpose... 1 Overview... 1 Installation... 2 Configuration... 2 Company Codes... 3 Logging

More information

Adevice driver is a tiny chunk of programming code that

Adevice driver is a tiny chunk of programming code that Device Driver Tweaks CHAPTER W1 Adevice driver is a tiny chunk of programming code that serves as a kind of middleman between Windows and a particular device. For example, if Windows needs a device to

More information

Browser Cookie Settings

Browser Cookie Settings Browser Cookie Settings Error Messages: Browser's cookie functionality turned off Steps to Try 1. Try enabling cookies, close all browser windows and restart browser after enabling cookies 2. Try clearing

More information

Recommended Settings for Internet Explorer

Recommended Settings for Internet Explorer Recommended Settings for Internet Explorer This section describes recommended settings that should be set up by all customers who are running CareLogic in Internet Explorer version 7 or 8. In an effort

More information

1. Installing Origin. To install Origin, start the installation program. Click on the Next button.

1. Installing Origin. To install Origin, start the installation program. Click on the Next button. 1. Installing Origin To install Origin, start the installation program. Click on the Next button. Accept the License Agreement by clicking on the Yes button. Select the Install Product (requires serial

More information

Putting It All Together: Your First WMI/ADSI Script

Putting It All Together: Your First WMI/ADSI Script jones.book Page 351 Wednesday, February 25, 2004 2:11 PM CHAPTER 20 Putting It All Together: Your First WMI/ADSI Script IN THIS CHAPTER It s time to leverage what you ve learned about ADSI and WMI scripting.

More information

User Account Manager

User Account Manager CHAPTER 4 Note User accounts can be accessed only when operating in Internal Directory mode. To access User tasks, log in to the system (see Logging In section on page 2-1). Then, from the Home page, click

More information

Uploading Files. Creating Files

Uploading Files. Creating Files Desktop/Laptop File management with Microsoft Teams (which uses a SharePoint document library) provides new options for working collaboratively. Some options will require assistance from ICT Desktop Support

More information

Working with SQL SERVER EXPRESS

Working with SQL SERVER EXPRESS Table of Contents How to Install SQL Server 2012 Express Edition... 1 Step 1.... 1 Step 2.... 2 Step 3.... 3 Step 4.... 3 Step 5.... 4 Step 6.... 5 Step 7.... 5 Step 8.... 6 Fixing Database Start-up Connection

More information

Downloading & Installing Audacity

Downloading & Installing Audacity Downloading Audacity 1. Open your web browser. 2. Navigate to the following URL: http://audacity.sourceforge.net/download/ 3. The system displays the Download page for Audacity. 4. Select your operating

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

Python Boot Manager PC Interface for loading Python scripts 30/08/07

Python Boot Manager PC Interface for loading Python scripts 30/08/07 PC Interface for loading Python scripts Contents 1.1 Scope... 3 1.2 Introduction... 3 1.3 Using Python Boot Manager Application... 3 1.3.1 Reading the memory... 4 1.3.2 Writing the memory... 5 1.3.3 Flashing

More information

Grant Minimum Permission to an Active Directory User Account Used by the Sourcefire User Agent

Grant Minimum Permission to an Active Directory User Account Used by the Sourcefire User Agent Grant Minimum Permission to an Active Directory User Account Used by the Sourcefire User Agent Document ID: 118637 Contributed by Nazmul Rajib and Douglas Loss, Cisco TAC Engineers. Jun 05, 2015 Contents

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

Installing and Activating a Multi-User Network License for Statgraphics 18

Installing and Activating a Multi-User Network License for Statgraphics 18 Installing and Activating a Multi-User Network License for Statgraphics 18 Step 1: Download and Install Statgraphics 18... 2 Step 2: Create a Statgraphics Registration Account... 2 Step 3: Register the

More information

Contents. View a test log... 1 Lesson 1: Viewing a test log...1. iii. Lesson 2: Viewing test log events...1 Summary: View a test log...

Contents. View a test log... 1 Lesson 1: Viewing a test log...1. iii. Lesson 2: Viewing test log events...1 Summary: View a test log... View test logs ii View test logs Contents View a test log............ 1 Lesson 1: Viewing a test log.........1 Lesson 2: Viewing test log events.......1 Summary: View a test log..........2 iii iv View

More information

Tutorial 3 - Performing a Change-Point Analysis in Excel

Tutorial 3 - Performing a Change-Point Analysis in Excel Tutorial 3 - Performing a Change-Point Analysis in Excel Introduction This tutorial teaches you how to perform a change-point analysis while using Microsoft Excel. The Change-Point Analyzer Add-In allows

More information

Nexxis ilab v5.0.7 FIELD FIX INDEX

Nexxis ilab v5.0.7 FIELD FIX INDEX FIELD FIX INDEX Purpose: Definition: This document is an index of available field fixes for the above noted product. It lists the specific field fix, date made available and summarizes the issues it addresses.

More information

Lenovo BIOS Windows Management Instrumentation Interface Deployment Guide for Desktop. Date:Sep. 2011

Lenovo BIOS Windows Management Instrumentation Interface Deployment Guide for Desktop. Date:Sep. 2011 Lenovo BIOS Windows Management Instrumentation Interface Deployment Guide for Desktop Date:Sep. 2011 Second Edition (Sep. 2011) Copyright Lenovo 2011. All rights reserved. Contents Preface... III Chapter

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

VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE. Product: Virtual Iron Virtualization Manager Version: 4.2

VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE. Product: Virtual Iron Virtualization Manager Version: 4.2 VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE This manual provides a quick introduction to Virtual Iron software, and explains how to use Virtual Iron Virtualization Manager to configure

More information

From a Household, Client or Account views, under the Actions icon choose Manage Forms to launch, electronically submit and/or upload forms.

From a Household, Client or Account views, under the Actions icon choose Manage Forms to launch, electronically submit and/or upload forms. SEI Advisor Desktop SM Forms Management From a Household, Client or Account views, under the Actions icon choose Manage Forms to launch, electronically submit and/or upload forms. Section A: How to Launch

More information

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

Web Browser Application Troubleshooting Guide. Table of Contents

Web Browser Application Troubleshooting Guide. Table of Contents Web Browser Application Troubleshooting Guide The following trouble shooting guide outlines tips for common problems which may resolve incorrect or unexpected behavior of NMFTA s web based applications.

More information

OUTLOOK WEB APP (OWA): MAIL

OUTLOOK WEB APP (OWA): MAIL Office 365 Navigation Pane: Navigating in Office 365 Click the App Launcher and then choose the application (i.e. Outlook, Calendar, People, etc.). To modify your personal account settings, click the Logon

More information

Dealing with Event Viewer

Dealing with Event Viewer Dealing with Event Viewer Event Viewer is a troubleshooting tool in Microsoft Windows 2000.This how-to article will describe how to use Event Viewer. Event Viewer displays detailed information about system

More information

OneDrive for Business Online

OneDrive for Business Online WIN Desktop/Laptop Microsoft OneDrive for Business is a part of Office 365 (O365) and is your private professional document library, it uses Microsoft Office 365 to store your work files in the cloud and

More information

BROWSER-BASED SUPPORT CONSOLE USER S GUIDE. 31 January 2017

BROWSER-BASED SUPPORT CONSOLE USER S GUIDE. 31 January 2017 BROWSER-BASED SUPPORT CONSOLE USER S GUIDE 31 January 2017 Contents 1 Introduction... 2 2 Netop Host Configuration... 2 2.1 Connecting through HTTPS using Certificates... 3 2.1.1 Self-signed certificate...

More information

Manual UCSFwpa Configuration for Windows 7

Manual UCSFwpa Configuration for Windows 7 Image not found https://it.ucsf.edu/sites/it.ucsf.edu/themes/custom/it_new/logo.png it.ucsf.edu Published on it.ucsf.edu (https://it.ucsf.edu) Home > Manual UCSFwpa Configuration for Windows 7 Manual UCSFwpa

More information

Internet Explorer/ Edge/ Chrome/ Opera (Windows) Edition

Internet Explorer/ Edge/ Chrome/ Opera (Windows) Edition Internet Explorer/ Edge/ Chrome/ Opera (Windows) Edition Revision History Rev. Date (YYYY/MM/DD) Description Editor V.1.0 2015/4/1 First revision NII V.2.0 2018/2/26 Operating environment updates: Microsoft

More information

Recertifying a Customized Driver Package (WLK)

Recertifying a Customized Driver Package (WLK) Recertifying a Customized Driver Package (WLK) UPDATED: May 7, 2012 The driver certification process is always changing; if you want to ensure proper certification please read the documentation at http://sysdev.microsoft.com.

More information

29 March 2017 SECURITY SERVER INSTALLATION GUIDE

29 March 2017 SECURITY SERVER INSTALLATION GUIDE 29 March 2017 SECURITY SERVER INSTALLATION GUIDE Contents 1. Introduction... 2 1.1 Assumptions... 2 1.2 Prerequisites... 2 2. Required setups prior the Security Server Installation... 3 1.1 Create domain

More information

Parallel Printers Set-Up

Parallel Printers Set-Up Parallel Printers Set-Up - 25 - Setting up a Local Parallel Printer in Windows 95/98 Left click on the START button. Go to SETTINGS, and then PRINTERS. 1. Locate and double left click on the ADD PRINTER

More information

Mt. Lebanon School District 7 Horsman Drive Pittsburgh, Pennsylvania

Mt. Lebanon School District 7 Horsman Drive Pittsburgh, Pennsylvania Accessing your Individual Multimedia Area Each faculty and staff member with an individual user account will have their own space to store multimedia files. The multimedia can be easily linked to a website,

More information

VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE

VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE VIRTUALIZATION MANAGER ENTERPRISE EDITION GETTING STARTED GUIDE This manual provides a quick introduction to Virtual Iron software, and explains how to use Virtual Iron Virtualization Manager to configure

More information

Lab - Configure Browser Settings in Windows 8

Lab - Configure Browser Settings in Windows 8 Introduction In this lab, you will configure browser settings in Microsoft Internet Explorer. Recommended Equipment A computer with Windows 8 An Internet connection Step 1: Set Internet Explorer as the

More information

PST for Outlook Admin Guide

PST for Outlook Admin Guide PST for Outlook 2013 Admin Guide Document Revision Date: Sept. 25, 2015 PST Admin for Outlook 2013 1 Populating Your Exchange Mailbox/Importing and Exporting.PST Files Use this guide to import data (Emails,

More information

1. TABLE OF CONTENTS. 1. Table of Contents Guide Instructions Access Tririga Reset Your Password... 8

1. TABLE OF CONTENTS. 1. Table of Contents Guide Instructions Access Tririga Reset Your Password... 8 Access TRIRIGA 1. TABLE OF CONTENTS 1. Table of Contents... 2 2. Guide Instructions... 3 2.1 Guide Instructions... 3 3. Access Tririga... 4 4. Reset Your Password... 8 4.1 Password Reset... 8 Version Date:

More information

MonitorPack Guard deployment

MonitorPack Guard deployment MonitorPack Guard deployment Table of contents 1 - Download the latest version... 2 2 - Check the presence of Framework 3.5... 2 3 - Install MonitorPack Guard... 4 4 - Data Execution Prevention... 5 5

More information

INF204x Module 2 Lab 2: Using Encrypting File System (EFS) on Windows 10 Clients

INF204x Module 2 Lab 2: Using Encrypting File System (EFS) on Windows 10 Clients INF204x Module 2 Lab 2: Using Encrypting File System (EFS) on Windows 10 Clients Estimated Time: 30 minutes You have a standalone Windows 10 client computer that you share with your colleagues. You plan

More information

VI-CENTER EXTENDED ENTERPRISE EDITION GETTING STARTED GUIDE. Version: 4.5

VI-CENTER EXTENDED ENTERPRISE EDITION GETTING STARTED GUIDE. Version: 4.5 VI-CENTER EXTENDED ENTERPRISE EDITION GETTING STARTED GUIDE This manual provides a quick introduction to Virtual Iron software, and explains how to use Virtual Iron VI-Center to configure and manage virtual

More information

Office 365. Contents. Features, screen shots, and instructions are subject to change at any time Page 1

Office 365. Contents. Features, screen shots, and instructions are subject to change at any time Page 1 Office 365 Contents Office 365..1 Accessing Your Email...3 First Time Set-Up...4 Changing Your Password. 6 The Email Environment...8 Reading Pane View...9 Reading Your Emails.10 Reading Attachments...11

More information

Digital Certificate Service (DCS) - User Guide

Digital Certificate Service (DCS) - User Guide Digital Certificate Service (DCS) - User Guide Information Security Branch Contents Using this Guide... 3 User Requirements... 3 Secure E-mail Messaging... 4 Send a Secure E-mail Message... 4 Receive a

More information

Digital IDs (E-Signatures) in Adobe Acrobat

Digital IDs (E-Signatures) in Adobe Acrobat Digital IDs (E-Signatures) in Adobe Acrobat This document includes instructions for performing the following actions in Adobe Acrobat Pro DC, Version 2019.008.20071. download a PDF o Chrome o Firefox o

More information

VISIONTRACKER FREQUENTLY ASKED QUESTIONS FAQ

VISIONTRACKER FREQUENTLY ASKED QUESTIONS FAQ VISIONTRACKER FREQUENTLY ASKED QUESTIONS FAQ 1. FREQUENTLY ASKED QUESTIONS 1.1. TABLE OF CONTENTS 1. Frequently Asked Questions... 1 1.1. Table of Contents... 1 1.2. How to Open or Search for a Saved Application...

More information

Courseworks 10 Network Installation - 1 Seat

Courseworks 10 Network Installation - 1 Seat Courseworks 10 Network Installation - 1 Seat A complete User s Guide is located on your Courseworks 10 CD (in the Paulson folder) in.pdf format. In order to fully understand how to set up your training,

More information

TB06-003: Install Procedure for Momentum RIP 7.x & RIP Manager 3.1

TB06-003: Install Procedure for Momentum RIP 7.x & RIP Manager 3.1 TB06-003: Install Procedure for Momentum RIP 7.x & RIP Manager 3.1 It has been noted in recent installations that a specific procedure should be used when configuring Xitron s RIP Manager version 3.1 with

More information

Adobe Document Cloud esign Services

Adobe Document Cloud esign Services Adobe Document Cloud esign Services Integration for Microsoft Dynamics CRM 2015 Installation Guide Last Updated: July 16, 2015 Copyright 2015 Adobe Systems Incorporated. All rights reserved. Table of Contents

More information

CoSign Quick Guide Virtual Signing with CoSign

CoSign Quick Guide Virtual Signing with CoSign CoSign Quick Guide Virtual Signing with CoSign Table of Contents Launching OmniSign 1 Launching OmniSign with a PDF file 1 Launching OmniSign with a non-pdf file 1 Getting Started with OmniSign 2 Creating

More information

HOW TO: Establishing a VPN Connection For use with File Sharing on Windows 98, 2000, and Windows XP

HOW TO: Establishing a VPN Connection For use with File Sharing on Windows 98, 2000, and Windows XP HOW TO: Establishing a VPN Connection For use with File Sharing on Windows 98, 2000, and Windows XP 1. Go to the Start Menu, choose Programs, Accessories, Communications, and open the Network Connections

More information

How to design and print cards using a database connection with. emedia CS Software

How to design and print cards using a database connection with. emedia CS Software How to design and print cards using a database connection with emedia CS Software For this exercise, we will use a Database that has been created in EXCEL. The example below shows the database fields populated

More information

HPE IMC APM IIS Server Application Monitor Configuration Examples

HPE IMC APM IIS Server Application Monitor Configuration Examples HPE IMC APM IIS Server Application Monitor Configuration Examples Part number: 5200-1352 Software version: IMC APM 7.2 (E0401) Document version: 1 The information in this document is subject to change

More information

The Retail Agent Portal Experience

The Retail Agent Portal Experience Nexsure Training Manual - Client Portal The Retail Agent Portal Experience In This Chapter The Retail Agent Portal Experience The Retail Agent Portal Experience Once the retail agent contact receives the

More information

Unable to Import into Audatex Estimating

Unable to Import into Audatex Estimating Unable to Import into Audatex Estimating Overview When attempting to Import into Audatex Estimating, nothing happens, or an error message is displayed. Error Message One or more ActiveX controls could

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

Firmware zippack name : R exe Firmware File Name : Dell1815dn_V _AutoUpgrade.exe

Firmware zippack name : R exe Firmware File Name : Dell1815dn_V _AutoUpgrade.exe Updating Firmware on the Dell Laser Printer MFP 1815dn NOTICE: Do not turn off your printer or computer, or disconnect any cables during this operation. Doing this will corrupt the memory and the printer

More information

ACCESS GENERAL QUERIES TECHNICAL ISSUES WITH SPECIFIC COURSES. What do I do if I see Invalid log-in? How do I Access the LMS?

ACCESS GENERAL QUERIES TECHNICAL ISSUES WITH SPECIFIC COURSES. What do I do if I see Invalid log-in? How do I Access the LMS? 1 ACCESS How do I Access the LMS? What do I do if I see Invalid log-in? What are the first steps in the LMS? What is my username/password? When I access the LMS, Why do I see this (Access Intelligence)?

More information

Putting It All Together: Your First WMI/ADSI Script

Putting It All Together: Your First WMI/ADSI Script CHAPTER 20 Putting It All Together: Your First WMI/ADSI Script IN THIS CHAPTER. Designing the Script. Writing Functions and Subroutines. Writing the Main Script. Testing the Script By now, you should have

More information

S/MIME on Good for Enterprise MS Online Certificate Status Protocol. Installation and Configuration Notes. Updated: November 10, 2011

S/MIME on Good for Enterprise MS Online Certificate Status Protocol. Installation and Configuration Notes. Updated: November 10, 2011 S/MIME on Good for Enterprise MS Online Certificate Status Protocol Installation and Configuration Notes Updated: November 10, 2011 Installing the Online Responder service... 1 Preparing the environment...

More information

DTSAgent User Documentation

DTSAgent User Documentation DTSAgent User Documentation Overview... 1 Installation... 2 Application Installation... 2 Database Installation... 4 DTSAgent Configuration... 5 Initial Configuration... 5 Re-configuring DTSAgent... 6

More information

Reset the Admin Password with the ExtraHop Rescue CD

Reset the Admin Password with the ExtraHop Rescue CD Reset the Admin Password with the ExtraHop Rescue CD Published: 2018-01-19 This guide explains how to reset the administration password on physical and virtual ExtraHop appliances with the ExtraHop Rescue

More information

User Manual pdoc Signer

User Manual pdoc Signer User Manual pdoc Signer August 11, 2014 Copyright 1995-2014 Topaz Systems Inc. All rights reserved. For Topaz Systems, Inc. trademarks, visit www.topazsystems.com/information/legal.htm#trademarks. www.topazsystems.com

More information

How to Restore Windows Server 2008 Domain Controller System State

How to Restore Windows Server 2008 Domain Controller System State How to Restore Windows Server 2008 Domain Controller System State This article refers to the Barracuda Backup Legacy Release firmware or newer, and Windows Server 2008 domain controller. This article assumes

More information

Java Trojan UDURRANI UDURRANI

Java Trojan UDURRANI UDURRANI Java Trojan!1 Summary Payload received via email. User executes the payload Payload is initiated as a java jar file Payload uses powershell and wscript as helper script(s) Java is heavily obfuscated, using

More information

First-Time Login Procedure on XWin32

First-Time Login Procedure on XWin32 First-Time Login Procedure on XWin32 Configuring XWin32 The first time you log into X-Win32, you ll need to do a bit of profile setup; this is a one-time thing, and once done you shouldn t ever need to

More information

MyCalyx Getting Started User Guide

MyCalyx Getting Started User Guide Adding Point users MyCalyx Getting Started User Guide To add an end user to MyCalyx and assign them a Point license: 1. Click Manage Point Installations to access the Manage Point Installations page. 2.

More information

Skype for Business. Creating and Joining a Skype for Business Meeting

Skype for Business. Creating and Joining a Skype for Business Meeting Skype for Business Creating and Joining a Skype for Business Meeting Table of Contents Create A Skype for Business Meeting... 3 Outlook 2013/2016 for PC... 3 Outlook 2016 for Mac... 4 Outlook Web App (http://email.miami.edu)...

More information

Quick Reference Guide Hosting WebEx Meetings

Quick Reference Guide Hosting WebEx Meetings Quick Reference Guide Hosting WebEx Meetings You can schedule meetings in advance, or start an instant meeting and invite participants to join you. They do not have to subscribe to WebEx. They simply click

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

1. Installing Origin. To install Origin, start the installation program. Click on the Next button.

1. Installing Origin. To install Origin, start the installation program. Click on the Next button. 1. Installing Origin To install Origin, start the installation program. Click on the Next button. Select a directory, where the Origin Setup files will be stored and click on the Next button. The installation

More information

Getting Started with Outlook Web App (OWA)

Getting Started with Outlook Web App (OWA) Getting Started with Outlook Web App (OWA) Office 365 User Guide When first accessing your new Office 365 account, or if you are having any issues with your regular email client, use the below directions

More information

EDS8/16/32PR Quick Start Guide

EDS8/16/32PR Quick Start Guide Quick Start Guide 2007 Copyright Lantronix is a trademark of Lantronix. All rights reserved. 900-458 Rev. B 01/07 QUICK START GUIDE CONTENTS What s In the Box..........................................................2

More information

Online App Access: Quick Set-up & Instructions

Online App Access: Quick Set-up & Instructions Online App Access: Quick Set-up & Instructions Welcome to The Media Audit You will be accessing data ONLINE through our Citrix app, available by visiting: app.themediaaudit.com This simple guidebook contains

More information

Studywiz Extractor Installation Guide SIMS Multi-School

Studywiz Extractor Installation Guide SIMS Multi-School 01.02, 15 Feb 2011 Installation Instructions To ensure that the Xporter application will function as expected, we recommend that a dedicated SIMS user be created specifically to interact with the software

More information

Status Web Evaluator s Guide Software Pursuits, Inc.

Status Web Evaluator s Guide Software Pursuits, Inc. Status Web Evaluator s Guide 2018 Table of Contents Introduction... 2 System Requirements... 2 Contact Information... 2 Installing Microsoft IIS... 2 Verifying Microsoft IIS Features... 9 Installing the

More information

JMP to LSAF Add-in. User Guide v1.1

JMP to LSAF Add-in. User Guide v1.1 JMP to LSAF Add-in User Guide v1.1 Table of Contents Terms and Conditions... 3 System Requirements... 3 Installation... 3 Configuration... 4 API Setup... 4 Java Configuration... 5 Logging In... 5 Launching

More information

Deposit Wizard TellerScan Installation Guide

Deposit Wizard TellerScan Installation Guide Guide Table of Contents System Requirements... 2 WebScan Overview... 2 Hardware Requirements... 2 Supported Browsers... 2 Driver Installation... 2 Step 1 - Determining Windows Edition & Bit Count... 3

More information

New World ERP-eSuite

New World ERP-eSuite New World ERP-eSuite 2018.1 INSTALLATION GUIDE April 9, 2018 Review important information for installing this release: SSL is required for esuite Services and Website servers. 2018 Tyler Technologies.

More information

Distributed Processing

Distributed Processing What is Distributed Processing? An FTK examiner machine can be configured to utilize three additional machines to assist case creation / data processing as remote "workers". These additional processing

More information