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

Size: px
Start display at page:

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

Transcription

1 GO Software Pty Limited Map: 27 Tacoma Blvd, Pasadena SA 5042 Phn: Fax: none ABN: ACN: Eml: Web: VBScript Scripts to Manage Services Changing a Service Account Password Configuring Service Error Control Codes Configuring Service Start Options Determining Services that can be Paused Determining Services Running in All Processes Determining Services Running in a Process Determining Services that can be Stopped Enumerating Antecedent Services for a Single Service Enumerating Dependent Services for All Services Enumerating Dependent Services for a Single Service Enumerating Inactive Services Enumerating Service Load Order Groups Installing a Service Monitoring Service Performance Pausing Services Running Under a Specific Account Removing a Service Resuming AutoStart Services that are Paused Retrieving Service Properties Retrieving Service Status Retrieving Service Status Changes from Event Logs Starting AutoStart Services that have Stopped Starting a Service and Its Dependents Stopping a Service and Its Dependents Stopping Services Running Under a Specific Account Switching Service Accounts to Local Service Changing a Service Account Password Changes the service account password for any services running under the hypothetical service account Netsvc. WinObj="winmgmts:{impersonationLevel=impersonate}!\\" & strcomputer & "\root\cimv2" Set objwmiservice=getobject(winobj) For Each objservice in colservicelist If objservice.startname=".\netsvc" Then errreturn=objservice.change(,,,,,,, "password") Configuring Service Error Control Codes Configures all auto-start services to issue an alert if the service fails during startup. Const NORMAL ERROR CONTROL=2 SQL="Select * from Win32 Service where ErrorControl='Ignore'" errreturn=objservice.change(,,, NORMAL ERROR CONTROL) Configuring Service Start Options Disables all services configured as manual start. Among other things, this prevents Power Users from being able to start these services. SQL="Select * from Win32 Service where StartMode='Manual'" errreturncode=objservice.change(,,,, "Disabled") Determining Services that can be Paused Returns a list of services that can be stopped. SQL="Select * from Win32 Service Where AcceptPause=True" Determining Services Running in All Processes Returns a list of processes and all the services currently running in each process. set objiddictionary=createobject("scripting.dictionary") SQL="Select * from Win32 Service Where State <> 'Stopped'"

2 If objiddictionary.exists(objservice.processid) Then Else objiddictionary.add objservice.processid, objservice.processid colprocessids=objiddictionary.items For i=0 to objiddictionary.count - 1 SQL="Select * from Win32 Service Where ProcessID='" & colprocessids(i) & "'" Wscript.Echo "Process ID: " & colprocessids(i) Wscript.Echo VbTab & objservice.displayname Set objwmiservice= GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strcomputer & "\root\cimv2") SQL="Associators of {Win32 Service.Name='rasman'} Where AssocClass=Win32 DependentService Role=Antecedent" Determining Services Running in a Process Returns a list of services running in the Services.exe process. If objservice.pathname="c:\windows\system32\services.exe" Then Determining Services that can be Stopped Returns a list of services that can be stopped. SQL="Select * from Win32 Service Where AcceptStop=True" Enumerating Antecedent Services for a Single Service Enumerates all the services that must be running before the SMTP service can be started. SQL="Associators of {Win32 service.name='smtpsvc'} Where AssocClass=Win32 DependentService Role=Dependent" Enumerating Dependent Services for All Services Returns a list of all the services installed on a computer that are currently stopped. Const ForAppending=8 Set objfso=createobject("scripting.filesystemobject") Set objlogfile=objfso.opentextfile("c:\scripts\service dependencies.csv", ForAppending, True) objlogfile.write("service Dependencies") For Each objservice in collistofservices objserviceregistryname=objservice.name objservicedisplayname=objservice.displayname SQL="Associators of {Win32 Service.Name='" & objserviceregistryname & "'} " SQL=SQL & "Where AssocClass=Win32 DependentService Role=Antecedent" If colservicelist.count=0 then objlogfile.write(objservicedisplayname) & ", None" Else For Each objdependentservice in colservicelist objlogfile.write(objservicedisplayname) & ", " objlogfile.write(objdependentservice.displayname) objlogfile.writeline objlogfile.close Enumerating Dependent Services for a Single Service Enumerates all the services that cannot start until the Rasman service has started.

3 Enumerating Inactive Services Returns a list of all the services installed on a computer that are currently stopped. SQL="SELECT DisplayName, State FROM Win32 Service WHERE State <> 'Running'" Set objwmiservice= GetObject("winmgmts:" & "{impersonationlevel=impersonate}!\\" & strcomputer & "\root\cimv2") Set colstoppedservices=objwmiservice.execquery(sql) For Each objservice in colstoppedservices & "=" & objservice.state Enumerating Service Load Order Groups Returns a list of all the service load order groups found on a computer, and well as their load order. On Error Resume SQL="Select * from Win32 LoadOrderGroup" Set objwmiservice=getobject("winmgmts:\\" & strcomputer & "\root\cimv2") Set colitems=objwmiservice.execquery(sql) For Each objitem in colitems Wscript.Echo "Driver Enabled: " & objitem.driverenabled Wscript.Echo "Group Order: " & objitem.grouporder Wscript.Echo "Name: " & objitem.name Wscript.Echo Installing a Service Installs a hypothetical service Db.exe. Const OWN PROCESS=16 Const NOT INTERACTIVE=False Const NORMAL ERROR CONTROL=2 Set objservice=objwmiservice.get("win32 BaseService") SvcName="DbService" SvcDesc="Personnel Database" SvcPath="c:\windows\system32\db.exe" SvcStart="Manual" SvcLogon="NT AUTHORITY\LocalService" errreturn=objservice.create(svcname, SvcDesc, SvcPath, OWN PROCESS, NORMAL ERROR CONTROL, _ SvcStart, NOT INTERACTIVE, SvcLogon, "") Wscript.Echo errreturn Monitoring Service Performance Uses formatted performance counters to retrieve performance data for the DHCP Server service. set objrefresher=createobject("wbemscripting.swbemrefresher") Set coldhcpserver=objrefresher.addenum(objwmiservice, _ "win32 PerfFormattedData DHCPServer DHCPServer").ObjectSet objrefresher.refresh For i=1 to 60 For Each objdhcpserver in coldhcpserver Wscript.Echo "Acknowledgements per second: " & objdhcpserver.ackspersec Wscript.Echo "Declines per second: " & objdhcpserver.declinespersec Wscript.Echo "Discovers per second: " & objdhcpserver.discoverspersec Wscript.Echo "Informs per second: " & objdhcpserver.informspersec Wscript.Echo "Offers per second: " & objdhcpserver.offerspersec Wscript.Echo "Releases per second: " & objdhcpserver.releasespersec Wscript.Echo "Requests per second: " & objdhcpserver.requestspersec Wscript.Sleep objrefresher.refresh Pausing Services Running Under a Specific Account Pauses all services running under the hypothetical service account Netsvc. If objservice.startname=".\netsvc" Then errreturncode=objservice.pauseservice() Removing a Service Removes a hypothetical service named DbService. SQL="Select * from Win32 Service Where Name='DbService'"

4 objservice.stopservice() objservice.delete() Resuming AutoStart Services that are Paused Restarts any auto-start services that have been paused. SQL="Select * from Win32 Service Where State='Paused' and StartMode='Auto'" objservice.resumeservice() Retrieving Service Properties Retrieves a complete list of services and their associated properties. Information is saved to a text file: C:\Scripts\Service List.cs. Const ForAppending=8 Set objfso=createobject("scripting.filesystemobject") Set objlogfile=objfso.opentextfile("c:\scripts\service list.csv", ForAppending, True) Hdg="System Name, Service Name, Service Type, Service State, Exit Code, Process ID, Can Be Paused, " Hdg=Hdg & "Can Be Stopped, Caption, Description, Can Interact with Desktop, Display Name, " Hdg=Hdg & "Error Control, Executable Path Name, Service Started, Start Mode, Account Name" objlogfile.write(hdg) objlogfile.write(objservice.systemname) & ", " objlogfile.write(objservice.name) & ", " objlogfile.write(objservice.servicetype) & ", " objlogfile.write(objservice.state) & ", " objlogfile.write(objservice.exitcode) & ", " objlogfile.write(objservice.processid) & ", " objlogfile.write(objservice.acceptpause) & ", " objlogfile.write(objservice.acceptstop) & ", " objlogfile.write(objservice.caption) & ", " objlogfile.write(objservice.description) & ", " objlogfile.write(objservice.desktopinteract) & ", " objlogfile.write(objservice.displayname) & ", " objlogfile.write(objservice.errorcontrol) & ", " objlogfile.write(objservice.pathname) & ", " objlogfile.write(objservice.started) & ", " objlogfile.write(objservice.startmode) & ", " objlogfile.write(objservice.startname) & ", " objlogfile.writeline objlogfile.close Retrieving Service Status Returns a list of all the services installed on a computer, and indicates their current status (typically, running or not running). Set colrunningservices=objwmiservice.execquery(sql) For Each objservice in colrunningservices & VbTab & objservice.state Retrieving Service Status Changes from Event Logs Retrieves events from the System event log that have an event ID of These events are recorded any time a service changes status. Set dtmconverteddate=createobject("wbemscripting.swbemdatetime") SQL="Select * from Win32 NTLogEvent Where Logfile='System' and EventCode='7036'" Set colserviceevents=objwmiservice.execquery(sql) For Each strevent in colserviceevents dtmconverteddate.value=strevent.timewritten Wscript.Echo dtmconverteddate.getvardate Wscript.Echo strevent.message Starting AutoStart Services that have Stopped Restarts any auto-start services that have been stopped. SQL="Select * from Win32 Service Where State='Stopped' and StartMode='Auto'" objservice.startservice()

5 Starting a Service and Its Dependents Starts the NetDDE service and all its dependent services. SQL="Select * from Win32 Service where Name='NetDDE'" errreturn=objservice.startservice() Wscript.Sleep SQL="Associators of {Win32 Service.Name='NetDDE'} Where AssocClass=Win32 DependentService Role=Dependent" objservice.startservice() Stopping a Service and Its Dependents Stops the NetDDE service and all its dependent services. SQL="Associators of {Win32 Service.Name='NetDDE'} Where AssocClass=Win32 DependentService Role=Antecedent" objservice.stopservice() Wscript.Sleep SQL="Select * from Win32 Service where Name='NetDDE'" errreturn=objservice.stopservice() Stopping Services Running Under a Specific Account Stops all services running under the hypothetical service account Netsvc. SQL="Select * from win32 Service" If objservice.startname=".\netsvc" Then errreturncode=objservice.stopservice() Switching Service Accounts to Local Service Changes the service account to LocalService for any services running under the hypothetical service account Netsvc. If objservice.startname=".\netsvc" Then errservicechange=objservice.change(,,,,,, "NT AUTHORITY\LocalService", "") Copyright 2014 by GO Software Pty Limited

Overview. Program Start VB SCRIPT SIGNER. IT Services

Overview. Program Start VB SCRIPT SIGNER. IT Services 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).

More information

GO Software Pty Limited Map: 27 Tacoma Blvd, Pasadena SA 5042 ABN: ACN: How to Export a Self Signed Server Certificate

GO Software Pty Limited Map: 27 Tacoma Blvd, Pasadena SA 5042 ABN: ACN: How to Export a Self Signed Server Certificate 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 How to Export a

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

'Attribute_value = objarguments(0) 'String representing the secedit attribute to test

'Attribute_value = objarguments(0) 'String representing the secedit attribute to test ----------------------- 'Use Case: #? : Secedit Test 'Goal: Tests the attributes of one or more Security settings available within Secedit 'relation document :????.doc 'Version: 1 Feb 3, 2006 'Author:

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

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

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

How to save money on Oracle Java Client Licenses

How to save money on Oracle Java Client Licenses How to save money on Oracle Java Client Licenses Oracle has multiple software for Java Clients. You can use the Enterprise version (JEE), but also the Runtime Engine (JRE). There is one big difference:

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

New-ADUser -Name -SAMAccountName - GivenName -Surname -DisplayName -UserPrincipalName - Path -ProfilePath

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

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

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

Error Code. GO Software Pty Limited Map: 27 Tacoma Blvd, Pasadena SA 5042 ABN: ACN:

Error Code. GO Software Pty Limited Map: 27 Tacoma Blvd, Pasadena SA 5042 ABN: ACN: 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 Error Code GW-Basic

More information

MODEMSHARE MILLENNIUM USER GUIDE

MODEMSHARE MILLENNIUM USER GUIDE MODEMSHARE MILLENNIUM USER GUIDE Version 1 Copyright Information in this document is subject to change without notice. Although reasonable care has been exercised in the preparation of this manual, SpartaCom

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

Leveraging Microsoft System Center Configuration Manager 2007 for Dell Factory Customization

Leveraging Microsoft System Center Configuration Manager 2007 for Dell Factory Customization Leveraging Microsoft System Center Configuration Manager 2007 for Dell Factory Customization A Dell Technical White Paper Dell Services Product Development Greg Ramsey and Warren Byle Edited by Tony Villarreal

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

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

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

APPLICATION NOTE. Changing Linux and Windows Autostart File MCS-TOUCHSCREENS

APPLICATION NOTE. Changing Linux and Windows Autostart File MCS-TOUCHSCREENS APP #7 APPLICATION NOTE Revision History APP #7 Date Author Description 06--7 DEW Setup App Changing Linux and Windows Autostart File Covered MCS-CONNECT RELEASE 8..0 and up For older versions use App#0

More information

Non-SAP Monitoring using OS scripts for multiple metrics

Non-SAP Monitoring using OS scripts for multiple metrics Non-SAP Monitoring using OS scripts for multiple metrics With SAP Solution Manager 7.1 SP12 Introduction: This guide describes how you can set up and us OS scripts to monitor SAP and non-sap applications

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

Immotec Systems, Inc. SQL Server 2008 Installation Document

Immotec Systems, Inc. SQL Server 2008 Installation Document SQL Server Installation Guide 1. From the Visor 360 installation CD\USB Key, open the Access folder and install the Access Database Engine. 2. Open Visor 360 V2.0 folder and double click on Setup. Visor

More information

Integrating Microsoft System Center Configuration Manager 2007 Operating System Deployment (ConfigMgr OSD) in the Dell Factory

Integrating Microsoft System Center Configuration Manager 2007 Operating System Deployment (ConfigMgr OSD) in the Dell Factory Microsoft System Center Manager 2007 Operating System Deployment (ConfigMgr OSD) User Guide July 2012 to in Dell Factories Administrators of Microsoft System Center Manager 2007 (referenced as Manager

More information

'Get the old path from the registry value we write using this script stroldpath = GetOldPath()

'Get the old path from the registry value we write using this script stroldpath = GetOldPath() ' Folder Migration ' Will correct recent files using the registry and.lnk files on the desktop ' The script is designed to be used as a logon script in an environment where all folders are redirected to

More information

{ WSH VBScript REFERENCE }

{ WSH VBScript REFERENCE } { WSH VBScript REFERENCE } WSH Template ..code goes here SUBS No Return Value Sub mysub() some statements Sub

More information

JUN / 04 VERSION 7.1 FOUNDATION

JUN / 04 VERSION 7.1 FOUNDATION JUN / 04 VERSION 7.1 FOUNDATION PVI EWPTYME www.smar.com Specifications and information are subject to change without notice. Up-to-date address information is available on our website. web: www.smar.com/contactus.asp

More information

Immotec Systems, Inc. SQL Server 2008 Installation Document

Immotec Systems, Inc. SQL Server 2008 Installation Document SQL Server Installation Guide 1. From the Visor 360 installation CD\USB Key, open the Access folder and install the Access Database Engine. 2. Open Visor 360 V2.0 folder and double click on Setup. Visor

More information

Aventail Connect Tunnel Service

Aventail Connect Tunnel Service Aventail Connect Tunnel Service User s Guide Windows v8.9.0 1996-2007 Aventail Corporation. All rights reserved. Aventail, Aventail Cache Control, Aventail Connect, Aventail Connect Mobile, Aventail Connect

More information

Chapter 8: Implementing and Managing Printers

Chapter 8: Implementing and Managing Printers 70-290: MCSE Guide to Managing a Microsoft Windows Server 2003 Environment, Enhanced Chapter 8: Implementing and Managing Printers Objectives Understand Windows Server 2003 printing terms and concepts

More information

-Ctrust the server certificate This switch is used by the client to configure it to implicitly trust the server

-Ctrust the server certificate This switch is used by the client to configure it to implicitly trust the server 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 SQLcmd Information

More information

SAS Installation Instructions Windows 2003, XP, 2000, NT. Workstation Installation Guidelines

SAS Installation Instructions Windows 2003, XP, 2000, NT. Workstation Installation Guidelines UCit Instructional and Research Computing, Software Distribution Office, 303B Zimmer Hall, Cincinnati, OH 45221-0088. Phone: (513) 556 9068 Email: Software@uc.edu SAS 9.1.3 Installation Instructions Windows

More information

Installation & Configuration Guide Version 1.4

Installation & Configuration Guide Version 1.4 TekSMTP Installation & Configuration Guide Version 1.4 Document Revision 1.7 https://www.kaplansoft.com/ TekSMTP is built by Yasin KAPLAN Read Readme.txt for last minute changes and updates which can be

More information

00:33 Network Loses Connection. 00:30 Health Check. Sweep all files in the monitored folder regardless of when deposited (i.e., process ALL files).

00:33 Network Loses Connection. 00:30 Health Check. Sweep all files in the monitored folder regardless of when deposited (i.e., process ALL files). FOLDER SWEEP OVERVIEW A common use of EFT Server s Folder Monitor rule is to detect files and move them to a different location on the network for processing. Mission critical operations require all files

More information

Covers PowerShell v2 APPENDIXES SECOND EDITION. Bruce Payette MANNING

Covers PowerShell v2 APPENDIXES SECOND EDITION. Bruce Payette MANNING Covers PowerShell v2 APPENDIXES SECOND EDITION Bruce Payette MANNING Windows PowerShell in Action Second Edition by Bruce Payette APPENDIXES Copyright 2011 Manning Publications brief contents Part 1 Learning

More information

Estuary Model MatLab Compiler Runtime for PCs

Estuary Model MatLab Compiler Runtime for PCs Estuary Model MatLab Compiler Runtime for PCs 1. Start by downloading the 2 required files to the Desktop: a. Mat Lab Compiler Runtime installer b. Estuary Program 2. Click the actual MatLab Compiler Runtime

More information

Preface 1. Main Management System 2. Contact Information 3 SIPLUS CMS. SIPLUS CMS4000 X-Tools - User Manual Main Management System.

Preface 1. Main Management System 2. Contact Information 3 SIPLUS CMS. SIPLUS CMS4000 X-Tools - User Manual Main Management System. 4000 X-Tools - User Manual - 03 - Main Management System Preface 1 Main Management System 2 Contact Information 3 4000 X-Tools User Manual - 03 - Main Management System Release 2011-09 Release 2011-09

More information

wmi Cookbook Introduction Examples List all running processes

wmi Cookbook Introduction Examples List all running processes wmi Cookbook Tim Golden > Python Stuff > wmi > WMI Cookbook Introduction These examples assume you are using the WMI module from this site. The following are examples of useful things that could be done

More information

The modusgate console is composed of five configuration modules, these are described in the following table:

The modusgate console is composed of five configuration modules, these are described in the following table: modusgate Quick Start Guide About the Startup Guide This modusgate console Startup Guide is designed to assist you in configuring the modusgate server using the simplified modusgate Configuration console.

More information

IP e-learning Course Manual

IP e-learning Course Manual IP e-learning Course Manual (For PC Users) Ver6.0 Contents Introduction... 1 1.IP e-learning Framework... 2 2. IP e-learning System environment Requirements... 3 3.Course Procedure (1)Course Procedure...

More information

Adding your IMAP Mail Account in Outlook 2013 on Windows

Adding your IMAP Mail Account in Outlook 2013 on Windows Adding your IMAP Mail Account in Outlook 2013 on Windows Replace example.co.za with your domain name as it was sent to you by Visualize IT 1. Launch Outlook 2. Select File on the top left menu bar 3. Select

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

Documentation. nfront AD Disabler. Version Never worry about dormant accounts again nfront Security. All Rights Reserved.

Documentation. nfront AD Disabler. Version Never worry about dormant accounts again nfront Security. All Rights Reserved. nfront AD Disabler Never worry about dormant accounts again. Version 2.6.00 Documentation 2000 2010 nfront Security. All Rights Reserved. nfront Security, the nfront Security logo, nfront Password Filter

More information

PROMISE ARRAY MANAGEMENT ( PAM) FOR FastTrak S150 TX2plus, S150 TX4 and TX4000. User Manual. Version 1.3

PROMISE ARRAY MANAGEMENT ( PAM) FOR FastTrak S150 TX2plus, S150 TX4 and TX4000. User Manual. Version 1.3 PROMISE ARRAY MANAGEMENT ( PAM) FOR FastTrak S150 TX2plus, S150 TX4 and TX4000 User Manual Version 1.3 Promise Array Management Copyright 2003 Promise Technology, Inc. All Rights Reserved. Copyright by

More information

CONNECTING TO YOUR VIRTUAL MACHINE 2 CHANGING YOUR NETWORK PASSWORD 7 ADDITIONAL RESOURCES 8

CONNECTING TO YOUR VIRTUAL MACHINE 2 CHANGING YOUR NETWORK PASSWORD 7 ADDITIONAL RESOURCES 8 For assistance please contact the AIMS Help Desk: 608.265.6900, help@aims.wisc.edu In this document An AIMS Virtual Machine, or virtual PC, is a copy of Microsoft Windows running on a server at a remote

More information

WorldShip Install on a Single or Workgroup Workstation

WorldShip Install on a Single or Workgroup Workstation PRE-INSTALLATION INSTRUCTIONS: This document discusses using the WorldShip DVD to install WorldShip. You can also install WorldShip from the web. Go to the following web page and click on the appropriate

More information

Strike View 7.0 SERVER CLIENT SIMULATOR USER S GUIDE

Strike View 7.0 SERVER CLIENT SIMULATOR USER S GUIDE Strike View 7.0 SERVER CLIENT SIMULATOR USER S GUIDE Strike View Version 7.0 1 TABLE OF CONTENTS SECTION 1 CONTACT...3 SECTION 2 WARRANTY...4 SECTION 3 OVERVIEW...5 SECTION 4 HARDWARE REQUIREMENTS...6

More information

WINDOWS NT 4.0 USER GUIDE

WINDOWS NT 4.0 USER GUIDE WINDOWS NT 4.0 USER GUIDE This guide will assist you in connecting to Nauticom using your Windows NT 4.0 Operating System. Click Start. Select Settings, and click Control Panel. Double click the Network

More information

Vodacom One Net app Quick Start Guide For Mac

Vodacom One Net app Quick Start Guide For Mac Vodacom One Net app Quick Start Guide For Mac Contents What is the One Net app? 1 Installing the One Net app 2 Logging in and out 2 Logging in for the first time 2 Logging out 2 Changing display language

More information

AUTOMATED APPOINTMENT REMINDER AND ANNOUNCEMENT SYSTEM

AUTOMATED APPOINTMENT REMINDER AND ANNOUNCEMENT SYSTEM SARS Messages AUTOMATED APPOINTMENT REMINDER AND ANNOUNCEMENT SYSTEM USER MANUAL 2011-2015 by SARS Software Products, Inc. All rights reserved. COPYRIGHT Copyright 2011-2015 SARS Software Products, Inc.

More information

UPS WorldShip Upgrade on a Single Workstation or a Workgroup Admin

UPS WorldShip Upgrade on a Single Workstation or a Workgroup Admin PRE-INSTALLATION INSTRUCTIONS: Temporarily disable any virus scan software that you have installed. Run the End of Day process for each Pending Collection group (under UPS Collections in the Shipment History

More information

Outlook 2010 Setup Guide (POP3 Transmailaccess)

Outlook 2010 Setup Guide (POP3 Transmailaccess) Versions Addressed: Microsoft Office Outlook 2010 Document Updated: 7 /22/2013 Copyright 2012 Smarsh, Inc. All rights reserved. Purpose: This document will assist the end user in configuring Outlook 2010

More information

Munis. Using Munis Scheduler Version For more information, visit

Munis. Using Munis Scheduler Version For more information, visit Munis Using Munis Scheduler Version 10.5 For more information, visit www.tylertech.com. TABLE OF CONTENTS Using Munis Scheduler... 3 User Permissions... 4 Scheduler-Enabled Programs... 5 Scheduler Queue...

More information

Installation & Configuration Guide Version 1.3

Installation & Configuration Guide Version 1.3 TekENUM Installation & Configuration Guide Version 1.3 Document Revision 1.7 https://www.kaplansoft.com/ TekENUM is built by Yasin KAPLAN Read Readme.txt for last minute changes and updates which can be

More information

AutoCount Server. A c c o u n t B i l l i n g S t o c k P O S P a y r o l l. ISV/Software Solutions

AutoCount Server. A c c o u n t B i l l i n g S t o c k P O S P a y r o l l. ISV/Software Solutions AutoCount Server A c c o u n t B i l l i n g S t o c k P O S P a y r o l l ISV/Software Solutions Introduction AutoCount server is mandatory to install in server pc for AutoCount Accounting 2.0. It is

More information

GIGABYTE Remote Management Console User s Guide. Version: 1.0

GIGABYTE Remote Management Console User s Guide. Version: 1.0 GIGABYTE Remote Management Console User s Guide Version: 1.0 Table of Contents Using Your GIGABYTE Remote Management Console...2 Software Install...3 Prerequisites on remote management PC...3 Install Java

More information

Syn-Apps Desktop Notification Client for Windows Operating Systems User Manual Version Syn-Apps LLC

Syn-Apps Desktop Notification Client for Windows Operating Systems User Manual Version Syn-Apps LLC Syn-Apps Desktop Notification Client for Windows Operating Systems User Manual Version 8.3.12 About Syn-Apps Syn-Apps L.L.C. was founded in 2001 as a consulting firm focused on developing software for

More information

Windows NT 4.x. Preliminary Steps. Quick CD-ROM Install Steps. Phaser 6250 Color Laser Printer

Windows NT 4.x. Preliminary Steps. Quick CD-ROM Install Steps. Phaser 6250 Color Laser Printer Windows NT 4.x This topic includes: "Preliminary Steps" on page 3-21 "Quick CD-ROM Install Steps" on page 3-21 "Other Methods of Installation" on page 3-22 "Windows NT 4.x Troubleshooting (TCP/IP)" on

More information

ManagerTM Mission Falls Court Fremont, CA an ISO 9001 certified company PHONE (510) FAX (510)

ManagerTM Mission Falls Court Fremont, CA an ISO 9001 certified company PHONE (510) FAX (510) ManagerTM Integrating the NexSentry Manager 2.02 with DataCard QwikWorks 4.0 47102 Mission Falls Court Fremont, CA 94539-7818 an ISO 9001 certified company PHONE (510) 360-7800 FAX (510) 360-7820 Copyright

More information

Installation & Configuration Guide Version 1.3

Installation & Configuration Guide Version 1.3 TekSIP Route Server Installation & Configuration Guide Version 1.3 Document Revision 1.9 https://www.kaplansoft.com/tsrserver/ TekSIP Route Server is built by Yasin KAPLAN Read Readme.txt for last minute

More information

Wireless Presentation System User s Manual

Wireless Presentation System User s Manual Téléchargé depuis www.lampe-videoprojecteur.info Wireless Presentation System User s Manual Version: 1.0 Date: 2008.1.11 User s Manual 1 Table of Contents 1. Overview... 3 2. First Setup of the Wireless

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

Integrated Software Series Installation Instructions

Integrated Software Series Installation Instructions Integrated Software Series Installation Instructions........................................ To install the Integrated Software Series, you must install the software on your server first and then install

More information

Sleep Control for MediaPortal

Sleep Control for MediaPortal Sleep Control for MediaPortal Version 1.9.1 Copyright 2009-2016 Alexander Gola (aka Micropolis) Icon Artwork Copyright The Iconlab, Mazenl77, Harwen, Icons-Land 1. Summary SleepControl is a MediaPortal

More information

This guide will hopefully explain how Evolution works and what you need to do to get the system installed and configured.

This guide will hopefully explain how Evolution works and what you need to do to get the system installed and configured. Evolution The Basic Getting Started Techician Guide This guide will hopefully explain how Evolution works and what you need to do to get the system installed and configured. How it works? Evolution is

More information

Desktop VirtualPBX Softphone Setup Instructions for Mac

Desktop VirtualPBX Softphone Setup Instructions for Mac Desktop VirtualPBX Softphone Setup Instructions for Mac If you have not yet done so, please contact us to purchase the VirtualPBX Desktop Softphone. Desktop Softphones are a one time payment of $40 for

More information

Safety Storm Interactive Participant Guide

Safety Storm Interactive Participant Guide Table of Contents Getting Started... 1 Starting the Video Module... 3 Taking the test... 4 Completing the Module... 6 Printing the Certificate... 6 Getting Started Log into the Health.edu Safety Storm

More information

Vodafone One Net app Quick Start Guide For PC

Vodafone One Net app Quick Start Guide For PC Vodafone One Net app Quick Start Guide For PC Contents What is the One Net app? 1 Installing the One Net app 2 Logging in and out 2 Logging in for the first time 2 Starting the One Net app when you turn

More information

Connect the PC and Log into the GUI

Connect the PC and Log into the GUI CHAPTER 3 Connect the PC and Log into the GUI This chapter explains how to connect PCs and workstations to the Cisco ONS 15600 SDH and how to log into Cisco Transport Controller (CTC) software, which is

More information

Connect the PC and Log into the GUI

Connect the PC and Log into the GUI CHAPTER 3 Connect the PC and Log into the GUI This chapter explains how to connect PCs and workstations to the Cisco ONS 15454 and how to log into Cisco Transport Controller (CTC) software, which is the

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

Step by Step DHCP Server Installation & configuration on Microsoft Windows Server 2016

Step by Step DHCP Server Installation & configuration on Microsoft Windows Server 2016 Step by Step DHCP Server Installation & configuration on Microsoft Windows Server 2016 Hussain Shakir LinkedIn: https://www.linkedin.com/in/mrhussain Twitter: https://twitter.com/hshakir_ms Blog: http://mstechguru.blogspot.ae/

More information

Instructions for using Citrix to access applications for students in the Department of Mathematics and Statistics.

Instructions for using Citrix to access applications for students in the Department of Mathematics and Statistics. Instructions for using Citrix to access applications for students in the Department of Mathematics and Statistics. What is Citrix? Citrix is a product that provides remote access to applications. Important

More information

Connect the PC and Log into the GUI

Connect the PC and Log into the GUI CHAPTER 3 This chapter explains how to connect Windows PCs and Solaris workstations to the Cisco ONS 15310-CL and Cisco ONS 15310-MA, and how to log into Cisco Transport Controller (CTC) software. CTC

More information

CELLTRAQ Battery Monitoring Software

CELLTRAQ Battery Monitoring Software CELLTRAQ Battery Monitoring Software Instructions April 2009 167-000128A INNOVATION TECHNOLOGY QUALITY WORLDWIDE Page 2 CELLTRAQ Overview CELLTRAQ CELLTRAQ is a web application that is used to monitor

More information

EasySMS Office Introduction and Installation

EasySMS Office Introduction and Installation EasySMS Office Introduction and Installation Preface This material and the copyright herein is the exclusive property of Dev Squared Designs (Pty) Ltd. It may not be used, reproduced by nor passed on to

More information

Talk Light Time Manager User Instructions

Talk Light Time Manager User Instructions Talk Light Time Manager User Instructions Talk Light Time Manager Installation and User Instructions Technical Requirements: Windows 95, Windows 98, NT, ME, Windows 2000 or XP. Hard drive space for the

More information

Smart Data Link with KM Switch. User Manual MD-KM-PIP

Smart Data Link with KM Switch. User Manual MD-KM-PIP Smart Data Link with KM Switch User Manual MD-KM-PIP Table of Contents Introduction...3 Specifications.3 Hardware Installation....4 AP Installation of USB Cable KVM with Data Link....5 The Icon Status...

More information

Vodafone One Net app Quick Start Guide For PC

Vodafone One Net app Quick Start Guide For PC Vodafone One Net app Quick Start Guide For PC Power to you Contents What is the One Net app? 1 Installing the One Net app 2 Logging in and out 2 Logging in for the first time 2 Starting the One Net app

More information

IceWarp to IceWarp Migration Guide

IceWarp to IceWarp Migration Guide IceWarp Unified Communications IceWarp to IceWarp Migration Guide Version 12.0 IceWarp to IceWarp Migration Guide 2 Contents IceWarp to IceWarp Migration Guide... 4 Used Terminology... 4 Brief Introduction...

More information

Installing HostExplorer 10 For the PC Author: Byron Watanabe

Installing HostExplorer 10 For the PC Author: Byron Watanabe WIN1013 July 2005 Installing HostExplorer 10 For the PC Author: Byron Watanabe Requirements Requirements... 1 Obtaining HostExplorer... 1 Preparing to install... 1 Installation... 2 HostExplorer 10.0 supports

More information

A Comprehensive Look at Foxtrot s Action Library

A Comprehensive Look at Foxtrot s Action Library FOXTROT ACTIONS Foxtrot RPA s Smart Technology will always present the user with the Actions that are relevant to the target. A Comprehensive Look at Foxtrot s Action Library Add Sheet Arrange Workbooks

More information

UPS WorldShip Install on a Workgroup Remote

UPS WorldShip Install on a Workgroup Remote PRE-INSTALLATION INSTRUCTIONS: Install UPS WorldShip on the Workgroup Admin. Temporarily disable any virus scan software that you may have installed. Request access to the network share drive created by

More information

GO Software Pty Limited Map: 27 Tacoma Blvd, Pasadena SA 5042 ABN: ACN:

GO Software Pty Limited Map: 27 Tacoma Blvd, Pasadena SA 5042 ABN: ACN: 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 order allow,deny

More information

SysManSMS Server. with. TAC Xenta-731

SysManSMS Server. with. TAC Xenta-731 Add mobile freedom to your Xenta controller Configuration and setup SysManSMS Server with TAC Xenta-731 High quality mobile notification solution: Secure internet-free delivery with direct GSM network

More information

Fast Ethernet Print Server 1 Parallel, 2 USB

Fast Ethernet Print Server 1 Parallel, 2 USB Fast Ethernet Print Server 1 Parallel, 2 USB User s Manual Rev. 01 (Nov, 2005) Made In Taiwan TABLE OF CONTENTS ABOUT THIS GUIDE... 4 INTRODUCTION... 5 PACKAGE CONTENTS... 6 SYSTEM REQUIREMENTS... 6 GENERAL

More information

The Voxco System. About Voxco Accessing Voxco Logging into Voxco Using Voxco Taking a Break Between Calls...

The Voxco System. About Voxco Accessing Voxco Logging into Voxco Using Voxco Taking a Break Between Calls... The Voxco System About Voxco... 1 Accessing Voxco... 1 Logging into Voxco... 2 Using Voxco... 4 Taking a Break Between Calls... 4 Coding Responses... 5 Fixing Coding Errors... 5 Signaling a Last Call...

More information

Baan OpenWorld Broker 2.1. Installation Guide for Baan OpenWorld Broker 2.1

Baan OpenWorld Broker 2.1. Installation Guide for Baan OpenWorld Broker 2.1 Baan OpenWorld Broker 2.1 Installation Guide for Baan OpenWorld Broker 2.1 A publication of: Baan Development B.V. P.O.Box 143 3770 AC Barneveld The Netherlands Printed in the Netherlands Baan Development

More information

VersaBlue User Manual

VersaBlue User Manual VersaBlue User Manual Before you begin Beta: This app is in Beta, which means that you are one of a few customers who are getting early access to the app (Hooray for you!) to provide feedback (Hooray for

More information

WorldShip Upgrade on a Single or Workgroup Workstation

WorldShip Upgrade on a Single or Workgroup Workstation PRE-INSTALLATION INSTRUCTIONS: This document discusses using the WorldShip DVD to upgrade WorldShip. You can also install WorldShip from the Web. Go to the following Web page and click the appropriate

More information

First, some hints to Prac 3.Task 3.2

First, some hints to Prac 3.Task 3.2 First, some hints to Prac 3.Task 3.2 Prac 3.Task 3.2: retrieve Domain name, Computer name, and User name Domain name, Computer name, and User name (currently logged on as a user are different concepts.

More information

UCON-IP-NEO Operation Web Interface

UCON-IP-NEO Operation Web Interface UCON-IP-NEO Operation Web Interface copyright G&D 25/01/2012 Web Interface version 2.30 Subject to possible errors and technical modifications License notes G&D license Copyright G&D GmbH 2003-2012: All

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

I m InTouch Installation Guide for the DSL/Cable environment with a Linksys router Models: BEFSRU31, BEFSR41 V.2, BEFSR11

I m InTouch Installation Guide for the DSL/Cable environment with a Linksys router Models: BEFSRU31, BEFSR41 V.2, BEFSR11 I m InTouch router configuration p. 1 I m InTouch Installation Guide for the DSL/Cable environment with a Linksys router Models: BEFSRU31, BEFSR41 V.2, BEFSR11 Note: Different models may vary slightly

More information

Wireless Presentation Adaptor User s Manual

Wireless Presentation Adaptor User s Manual Wireless Presentation Adaptor User s Manual (Model Name: WPS-Speedy) Version: 1.5 Date: Sep. 24, 2010 1 Table of Contents 1. Overview... 4 2. Quick Start... 6 3. Windows Client Utility... 10 3.1 Starting

More information

BitDefender Enterprise Manager. Startup guide

BitDefender Enterprise Manager. Startup guide BitDefender Enterprise Manager Startup guide 1 Table of Contents Product installation... 3 Install BitDefender Enterprise Manager... 3 Install BitDefender Server add-on... 4 Protection configuration...

More information

User Guide Release 6.5.1, v. 1.0

User Guide Release 6.5.1, v. 1.0 User Guide Release 6.5.1, v. 1.0 Introduction The set-top box is your gateway to Skitter TV s interactive television services including TV Guide Favorite Channels DVR Parental Controls Caller ID This manual

More information

Structuring of the Windows Operating System

Structuring of the Windows Operating System Structuring of the Windows Operating System 2 Roadmap for This Lecture! Architecture Overview! Key windows system files! Design Attributes and Features! Key System Components! System Threads! System Processes

More information

Configuring and Monitoring Microsoft Applications

Configuring and Monitoring Microsoft Applications Configuring and Monitoring Microsoft Applications eg Enterprise v5.6 Restricted Rights Legend The information contained in this document is confidential and subject to change without notice. No part of

More information