First, some hints to Prac 3.Task 3.2

Size: px
Start display at page:

Download "First, some hints to Prac 3.Task 3.2"

Transcription

1 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. See the output below: /* retrieve Domain name, Computer name, and User name */ Set onetwork = CreateObject("WScript.Network" strdomain = onetwork.userdomain ' set objdomain = GetObject("WinNT://" & strdomain strcomputer = onetwork.computername ' set objcomputer = GetObject("WinNT://" & strcomputer ' objcomputer.getinfo struser = onetwork.username WScript.echo "Domain name: " & strdomain & VbCr & "Computer name: " _ & strcomputer & VbCr & "User name: " & struser Multiple accounts can be created on a computer or different users can logon to the same machine. The Domain name and Computer name are kept unchanged, while the User name changes with different accounts. Domain name means a User Group; Computer name is to identify a terminal; User name is for individual account who logs on the machine.

2 But on a personal computer without group settings, Domain name and Computer name could be the same: Computer Name can be typically found by right-clicking My Computer, then click Properties, then tab the Computer Name. Computer Name should have a corresponding IP address (in the setting of IP protocol.

3 We now introduce some systems administration tasks by using the Windows batch files. These are for your information only. 1. Windows startup programs can be managed via different ways. For your interest only. 1 Using UI utilities e.g. Run msconfig.exe program or search 'system configuration' and then start it.

4 Switch to Startup tab, you can freely enable or disable a program's auto-launch at Windows startup 2 Using commandline script (batch operations or vbs etc to touch the Windows registry directly Here are listed all startup programs for local computer: [HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] And here are listed all startup programs for current user: [HKCU\Software\Microsoft\Windows\CurrentVersion\Run] For instance, in order to disable Skype auto-launch at Windows startup, you can run the command: reg delete HKCU\Software\Microsoft\Windows\CurrentVersion\Run /v Skype /f

5 2. Create directory structure of installed application This is for your interest only. Source at where search for "Create directory structure of installed application". Type in the following code and name it as CreateDirStructureInstalledApplications.cmd. Please note that, running this batch file requires auxiliary utilities in the SAP auxiliary utilities.zip; unzip it place all files in the same working folder as CreateDirStructureInstalledApplications.cmd. This code will list all program names into folders; inside each folder, a log file %computername%.log will be created; inside the log file there will be version number of off setlocal EnableDelayedExpansion set path=%path%;%~dp0 set l=%~dp0 set u=microsoft\windows\currentversion\uninstall if "%ProgramFiles(x86%"=="" ( set sw=hklm\software set tokens=7 goto x86 :x64 echo 64-BIT APPS: set sw=hklm\software set tokens=7 for /f "tokens=%tokens% delims=\" %%a in ('^ reg query "%sw%\%u%" ^ grep "CurrentVersion.*Uninstall"' do ( reg query "%sw%\%u%\%%a" /v DisplayName > nul 2>&1 if!errorlevel!==0 ( reg query "%sw%\%u%\%%a" /v DisplayName > nul 2>&1 if!errorlevel!==0 for /f "tokens=*" %%b in ('^ reg query "%sw%\%u%\%%a" /v DisplayName ^ grep "DisplayName" ^ sed "s/reg_sz\ DisplayName//g" ^ sed "s/^[ \t]*//g"' do if not %%b=="" set name=%%b reg query "%sw%\%u%\%%a" /v DisplayVersion > nul 2>&1 if!errorlevel!==0 for /f "tokens=*" %%c in ('^ reg query "%sw%\%u%\%%a" /v DisplayVersion ^ grep "DisplayVersion" ^ sed "s/reg_sz\ DisplayVersion//g" ^ sed "s/^[ \t]*//g"' do if not %%c=="" set version=%%c echo!name!!version! if not exist "%l%\!name!" md "%l%\!name!" echo!version! > "%l%\!name!\%computername%.log"

6 set sw=hklm\software\wow6432node set tokens=8 :x86 echo 32-BIT APPS: for /f "tokens=%tokens% delims=\" %%a in ('^ reg query "%sw%\%u%" ^ grep "CurrentVersion.*Uninstall"' do ( reg query "%sw%\%u%\%%a" /v DisplayName > nul 2>&1 if!errorlevel!==0 ( reg query "%sw%\%u%\%%a" /v DisplayName > nul 2>&1 if!errorlevel!==0 for /f "tokens=*" %%b in ('^ reg query "%sw%\%u%\%%a" /v DisplayName ^ grep "DisplayName" ^ sed "s/reg_sz\ DisplayName//g" ^ sed "s/^[ \t]*//g"' do if not %%b=="" set name=%%b reg query "%sw%\%u%\%%a" /v DisplayVersion > nul 2>&1 if!errorlevel!==0 for /f "tokens=*" %%c in ('^ reg query "%sw%\%u%\%%a" /v DisplayVersion ^ grep "DisplayVersion" ^ sed "s/reg_sz\ DisplayVersion//g" ^ sed "s/^[ \t]*//g"' do if not %%c=="" set version=%%c echo!name!!version! if not exist "%l%\!name!" md "%l%\!name!" echo!version! > "%l%\!name!\%computername%.log" endlocal

7 3. Howto systeminfo For your interest only. Source at Of course you can check the system information from the Control Panel. However, you can also use command script to automatically retrieve the system information. Type in the following code and name it as howtosysteminfo.cmd. Please note that, running this batch file requires auxiliary utilities in the SAP auxiliary utilities.zip. Unzip it place all files in the same working folder as howtosysteminfo.cmd. Then run howtosysteminfo.cmd and retrieve the system off setlocal EnableDelayedExpansion set path=%path%;%~dp0 set tab= systeminfo awk "/Host Name/;/OS Name/;/System Model/;/System Type/;/Total Physical Memory/" echo Locally installed printers: for /F "tokens=7 delims=\" %%p in ('^ reg query "HKLM\SYSTEM\CurrentControlSet\Control\Print\Printers"' do echo %tab%%%p ipconfig all grep v "^$" reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName ^ find "Windows XP" > nul 2>&1 if not!errorlevel!==0 set r=/r gpresult %r% /user DOMAINNAME\% username% endlocal pause

8 4. Kill process in windows This may be useful during the lab. I'm not sure whether we are allowed to copy nircmd.exe to %systemroot%\system32 on lab computers though. If not, ignore this activity. Copy nircmd.exe to %systemroot%\system32. Then you can use the command like this: nircmd killprocess Wscript.exe nircmd killprocess javaw.exe

9 5. List installed programs in cmd window For your interest only. Source at Type in the following code and name it as ListInstalledPrograms.cmd, then run it. It may take a short while to retrieve the information. You can also redirect the output to a off setlocal EnableDelayedExpansion set U=Microsoft\Windows\CurrentVersion\Uninstall set dn=displayname set pdn=parentdisplayname set dv=displayversion if exist "%temp%\pcx64.log" del "%temp%\pcx64.log" if exist "%temp%\pcx86.log" del "%temp%\pcx86.log" if "%ProgramFiles(x86%"=="" ( set SW=HKLM\SOFTWARE set tokens=7 goto x86 :x64 echo 64-BIT APPS: set SW=HKLM\SOFTWARE set tokens=7 FOR /F "tokens=%tokens% delims=\" %%A IN ('reg query "%SW%\%U%"' DO ( reg query "%SW%\%U%\%%A" /v %dn% > nul 2>&1 if!errorlevel!==0 ( reg query "%SW%\%U%\%%A" find /V "%pdn%" find "%dn%" > nul 2>&1 if!errorlevel!==0 echo %%A; >> "%temp%\pcx64.log" for /F "tokens=1 delims=;" %%A in ('type "%temp%\pcx64.log"' do ( echo %%A reg query "%SW%\%U%\%%A" /v "%dn%" find "%dn%" reg query "%SW%\%U%\%%A" /v "%dv%" > nul 2>&1 if!errorlevel!==0 reg query "%SW%\%U%\%%A" /v "%dv%" find "%dv%" set SW=HKLM\SOFTWARE\Wow6432Node set tokens=8

10 :x86 echo 32-BIT APPS: FOR /F "tokens=%tokens% delims=\" %%A IN ('reg query "%SW%\%U%"' DO ( reg query "%SW%\%U%\%%A" /v %dn% > nul 2>&1 if!errorlevel!==0 ( reg query "%SW%\%U%\%%A" find /V "%pdn%" find "%dn%" > nul 2>&1 if!errorlevel!==0 echo %%A; >> "%temp%\pcx86.log" for /F "tokens=1 delims=;" %%A in ('type "%temp%\pcx86.log"' do ( echo %%A reg query "%SW%\%U%\%%A" /v "%dn%" find "%dn%" reg query "%SW%\%U%\%%A" /v "%dv%" > nul 2>&1 if!errorlevel!==0 reg query "%SW%\%U%\%%A" /v "%dv%" find "%dv%" endlocal

11 6. Prompt for numbers in windows batch file For your interest only. Source at Type in the following code and name it as promptnumbers.cmd, then run off echo Hello. Lets make a sum of two numbers. set /p first=type a first number: set /p second=type a second number: set /a together=first+second echo %together% pause

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

Sample Application: Frequency of words in text

Sample Application: Frequency of words in text A Word-Frequency Task using CMD, PSH and BASH c 2008 Dr Gonzo Publishing 1 Sample Application: Frequency of words in text It is easy to install cygwin on an XP machine to get the bash command-line interface.

More information

Multiple.minecraft file Organiser + Backuper - Batch File

Multiple.minecraft file Organiser + Backuper - Batch File Downloaded from: justpaste.it/gzhe Multiple.minecraft file Organiser + Backuper - Batch File by Pixel Zerg title Minecraft Files Organiser By Pixel Zerg :Menu echo MENU echo 1 to create an empty new preset

More information

Lab - Common Windows CLI Commands

Lab - Common Windows CLI Commands Introduction In this lab, you will use CLI commands to manage files and folders in Windows. Recommended Equipment A computer running Windows Step 1: Access the Windows command prompt. a. Log on to a computer

More information

In this tutorial we will discuss different options available in the Options tab in EMCO Network Inventory 4.x.

In this tutorial we will discuss different options available in the Options tab in EMCO Network Inventory 4.x. In this tutorial we will discuss different options available in the Options tab in EMCO Network Inventory 4.x. Include Options Tab Basic Info: This option enables you to configure EMCO Network Inventory

More information

Configuring Embedded LDAP Authentication

Configuring Embedded LDAP Authentication HP Restricted Configuring Embedded LDAP Authentication configure Configuring Embedded LDAP Authentication For HP product models: LaserJet 4345mfp, LaserJet 9040mfp, LaserJet 9050mfp, LaserJet 9500mfp,

More information

SETTING UP THE CLUB PC FOR OPTIMUM EASE OF USE

SETTING UP THE CLUB PC FOR OPTIMUM EASE OF USE Whether you decide to use a Touch Screen monitor or a standard PC monitor with a mouse for your Club Reception system we strongly recommend you use the following procedures. These will help your members

More information

Rainbow Desktop app Per-user MSI deployment using Microsoft Active Directory Group Policy Objects (AD-GPO)

Rainbow Desktop app Per-user MSI deployment using Microsoft Active Directory Group Policy Objects (AD-GPO) Rainbow Desktop app Per-user MSI deployment using Microsoft Active Directory Group Policy Objects (AD-GPO) Contents 1. Deploy or install Microsoft prerequisites via GPO... 2 1.1. Distribution point...

More information

Security Removable Media Manager

Security Removable Media Manager Security Removable Media Manager Version 9.9.0.0 (January 2018) Protect your valuable data 2011 Squadra Technologies, LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by

More information

Windows Command-Line: The Personal Trainer. Windows 8.1, Windows Server 2012 & Windows Server 2012 R2. William Stanek

Windows Command-Line: The Personal Trainer. Windows 8.1, Windows Server 2012 & Windows Server 2012 R2. William Stanek Windows Command-Line: The Personal Trainer Windows 8.1, Windows Server 2012 & Windows Server 2012 R2 William Stanek PUBLISHED BY Stanek & Associates PO Box 362 East Olympia, WA 98540-0362 Copyright 2015

More information

Security Removable Media Manager

Security Removable Media Manager Security Removable Media Manager Version 9.0.0.0 (March 2016) Protect your valuable data 2011 Squadra Technologies, LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright.

More information

Start Plink SSH tunnel on Windows start - Windows Resource Kit and AlwaysUp start Windows services when computer boots up

Start Plink SSH tunnel on Windows start - Windows Resource Kit and AlwaysUp start Windows services when computer boots up Start Plink SSH tunnel on Windows start - Windows Resource Kit and AlwaysUp start Windows services when computer boots up Author : admin Recently I blogged How to create dynamic and static SSH tunnels

More information

HOWTO install multiple Sybase ASE or RS versions on a Windows server Contents

HOWTO install multiple Sybase ASE or RS versions on a Windows server Contents HOWTO install multiple Sybase ASE or RS versions on a Windows server Contents 1 Introduction... 2 2 Using srvany.exe... 2 3 ASE SERVER... 2 3.1 Files needed... 2 3.2 To install... 2 4 BACKUP SERVER...

More information

Manual Script Windows Batch For Loop Files In A Directory

Manual Script Windows Batch For Loop Files In A Directory Manual Script Windows Batch For Loop Files In A Directory If I run the batch file manually from the command prompt, it works fine. think it is (it refers to the current directory, which is not necessarily

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

Skype For Business(Windows) Getting Started

Skype For Business(Windows) Getting Started Skype For Business(Windows) Getting Started This guide is for the Windows version of Skype for Business. What is Skype for Business? Skype for Business is a communication tool which allows you to interact

More information

Conventions in this tutorial

Conventions in this tutorial This document provides an exercise using Digi JumpStart for Windows Embedded CE 6.0. This document shows how to develop, run, and debug a simple application on your target hardware platform. This tutorial

More information

Microsoft Official Academic Course Windows Vista Configuration, Exam ISBN: ERRATA

Microsoft Official Academic Course Windows Vista Configuration, Exam ISBN: ERRATA Microsoft Official Academic Course Windows Vista Configuration, Exam 70-620 ISN: 978-0-470-06958-5 ERRATA Lesson Lesson 2 25 The Certification Ready? sidebar on this page does not link to an exam objective.

More information

All Microsoft Dos Commands

All Microsoft Dos Commands 1 All Microsoft Dos Commands (Microsoft Disk Operating System) 2 All Microsoft Dos Commands: ADDUSERS ARP ASSOC ASSOCIAT AT ATTRIB BOOTCFG BROWSTAT CACLS CALL CD CHANGE CHKDSK CHKNTFS CHOICE CIPHER CleanMgr

More information

Automation Engine Scripting Samples

Automation Engine Scripting Samples Automation Engine 14.1.1 Scripting Samples 06-2016 Automation Engine Contents 1. Read Me First... 3 2. AppleScript Code Samples... 4 3. Shell Script Code Sample... 5 4. Windows Script Code Samples...6

More information

COPYRIGHT NOTICE Vyooh Low Level Computing LLP. All Rights Reserved.

COPYRIGHT NOTICE Vyooh Low Level Computing LLP. All Rights Reserved. ADMIN GUIDE 2 COPYRIGHT NOTICE 2016 Vyooh Low Level Computing LLP. All Rights Reserved. This manual is copyrighted by Vyooh Low Level Computing LLP. You may not reproduce, transmit, transcribe, store in

More information

Touch Dynamic Quest II 7 - Tablet Staging Setup

Touch Dynamic Quest II 7 - Tablet Staging Setup Touch Dynamic Quest II 7 - Tablet Staging Setup Overview This page was written to assist with setting up and staging of tablets. Touch Dynamic Quest II 7 - Initializing and Turning on the Tablet 1. When

More information

AppWizard Installation/Upgrade Guide (v.4.00)

AppWizard Installation/Upgrade Guide (v.4.00) AppWizard Installation/Upgrade Guide (v.4.00) Last Updated: 15 September 2010 1 Introduction This manual is intended for the installation or upgrade of AppWizard 5.00. Please ensure that all steps are

More information

Manual Script Windows Batch If Condition. Syntax >>>CLICK HERE<<<

Manual Script Windows Batch If Condition. Syntax >>>CLICK HERE<<< Manual Script Windows Batch If Condition Syntax Command line interface and Batch Files (PRO and SCRIPTING Editions) The Play(Loop) will repeat the macro up to the maximum loop number specified. For more

More information

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

Monitoring Windows Systems with WMI

Monitoring Windows Systems with WMI Monitoring Windows Systems with WMI ScienceLogic version 8.8.1 Table of Contents Introduction 4 Monitoring Windows Devices in the ScienceLogic Platform 5 What is SNMP? 5 What is WMI? 5 PowerPacks 5 Configuring

More information

5.4.8 Optional Lab: Managing System Files with Built-in Utilities in Windows Vista

5.4.8 Optional Lab: Managing System Files with Built-in Utilities in Windows Vista 5.4.8 Optional Lab: Managing System Files with Built-in Utilities in Windows Vista Introduction Print and complete this lab. In this lab, you will use Windows built-in utilities to gather information about

More information

Remote Access User Guide for Mac OS (Citrix Instructions)

Remote Access User Guide for Mac OS (Citrix Instructions) (Citrix Instructions) VERSION: 003 PUBLISHED: 2/2018 Page 1 of 8 Remote Access User Guide for Mac OS Please follow the steps outlined in this guide which will show you how to access the Clarion Partners

More information

Installing Access Manager Agent for Microsoft SharePoint 2007

Installing Access Manager Agent for Microsoft SharePoint 2007 Installing Access Manager Agent for Microsoft SharePoint 2007 Author: Jeff Nester Sun Microsystems Jeff.Nester@sun.com Date: 7/17/2008 Version 1.0 Description: Paraphrased version of the Sun Java System

More information

Manually Open Windows Task Manager Xp Run As Administrator

Manually Open Windows Task Manager Xp Run As Administrator Manually Open Windows Task Manager Xp Run As Administrator Open Task Manager by pressing Ctrl+Shift+Esc on your keyboard Windows 8, list of You can change that by opening Options menu and clicking Always

More information

Backup using Quantum vmpro with Symantec Backup Exec release 2012

Backup using Quantum vmpro with Symantec Backup Exec release 2012 Backup using Quantum vmpro with Symantec Backup Exec release 2012 Step 1) If the vmpro appliance name and IP address are not resolved through DNS, update the Windows hosts file to include the IP address

More information

NETWRIX PASSWORD EXPIRATION NOTIFIER

NETWRIX PASSWORD EXPIRATION NOTIFIER NETWRIX PASSWORD EXPIRATION NOTIFIER QUICK-START GUIDE Product Version: 3.3.247 March 2014. Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

Windows 7 Manually Install Network Printer Drivers Without Admin Rights Gpo

Windows 7 Manually Install Network Printer Drivers Without Admin Rights Gpo Windows 7 Manually Install Network Printer Drivers Without Admin Rights Gpo I need to allow users to modify their locally installed printers. I'd like to be able to push this out through GPO somehow. Up

More information

[Outlook Configuration Guide]

[Outlook Configuration Guide] Prepared By: Sandeep Das Approved By: Effective From: October, 03, 2011 REVISION HISTORY S. N. Release Date Description Author Highlights 1 3 rd October 2011 First Release Sandeep Das First Release Copyright

More information

From using an External Harddrive, to a Google Cloud Drive; there is no one way to backup data.

From using an External Harddrive, to a Google Cloud Drive; there is no one way to backup data. Mac (OS X): Data Backup Guide 6/14/2016 Why: Backing up data should be done on a regular basis, not just when you think it is necessary, as a failure can happen at any time. While there are no set intervals

More information

application components

application components What you need to know for Lab 1 code to publish workflow application components activities An activity is an application component that provides a screen with which users can interact in order to do something,

More information

Windows Based Open Terminal Multi-Version Installation and Setup with SAM2. With Squirrel Version 6.0+ September 18, 2012

Windows Based Open Terminal Multi-Version Installation and Setup with SAM2. With Squirrel Version 6.0+ September 18, 2012 Windows Based Open Terminal Multi-Version Installation and Setup with SAM2 With Squirrel Version 6.0+ September 18, 2012 SAM2 Multi Version Open Terminal Record of Revisions Date Reference: Page, Paragraph

More information

Yong Peng High School System Documentation PC Section

Yong Peng High School System Documentation PC Section Yong Peng High School System Documentation PC Section Kent Ong Date: 26 May 2008 System Engineer Revision 1 Liew Toh Seng System Consultant Table of Contents Preface...1 Network Configuration (Manual Configuration)...1

More information

Drupal Command Line Instructions Windows 7 List All Printers

Drupal Command Line Instructions Windows 7 List All Printers Drupal Command Line Instructions Windows 7 List All Printers We won't show you that ad again. Can I configure the Ubuntu print server section of the tutorial via Terminal instead of via GUI. All what you

More information

Chgport The chgport command can be used to display or change COM port mappings for DOS compatibility.. Chgusr The chgusr command is used to change the

Chgport The chgport command can be used to display or change COM port mappings for DOS compatibility.. Chgusr The chgusr command is used to change the Windows 7 Command Prompt Commands Append The append command can be used by programs to open files in another directory as if they were located in the current directory. Arp The arp command is used to display

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

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

WA2592 Applied Data Science and Big Data Analytics. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc.

WA2592 Applied Data Science and Big Data Analytics. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. WA2592 Applied Data Science and Big Data Analytics Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Class Setup...3 Part 2 - Minimum Software Requirements

More information

Assignment clarifications

Assignment clarifications Assignment clarifications How many errors to print? at most 1 per token. Interpretation of white space in { } treat as a valid extension, involving white space characters. Assignment FAQs have been updated.

More information

Instruction How To Use Printer Processing >>>CLICK HERE<<<

Instruction How To Use Printer Processing >>>CLICK HERE<<< Instruction How To Use Printer Processing Command Windows 8 Use this document to resolve recovery issues in Windows 8. Follow the instructions in the section that best describes your recovery type to troubleshoot

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

INF204x Module 1, Lab 3 - Configure Windows 10 VPN

INF204x Module 1, Lab 3 - Configure Windows 10 VPN INF204x Module 1, Lab 3 - Configure Windows 10 VPN Estimated Time: 40 minutes Your organization plans to allow Windows 10 users to connect to the internal network by using the VPN client built into the

More information

5.4.8 Lab: Managing System Files with Built-in Utilities in Windows XP

5.4.8 Lab: Managing System Files with Built-in Utilities in Windows XP 5.4.8 Lab: Managing System Files with Built-in Utilities in Windows XP Introduction Print and complete this lab. In this lab, you will use Windows built-in utilities to gather information about the system

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

ADSelfService Plus Client Software Installation via Group Policy Objects (GPOs)

ADSelfService Plus Client Software Installation via Group Policy Objects (GPOs) ADSelfService Plus Client Software Installation via Group Policy Objects (GPOs) Contents Document Summary:... 3 ADSelfService Plus Client Software:... 3 ADSelfService Plus Client Software Installation

More information

HOW TO DISABLE OR STOP AUTO CHKDSK DURING WINDOWS STARTUP

HOW TO DISABLE OR STOP AUTO CHKDSK DURING WINDOWS STARTUP Date: 18/04/2013 Procedure: How to disable or Stop Auto CHKDSK During Windows Startup Source: LINK Permalink: LINK Created by: HeelpBook Staff Document Version: 1.0 HOW TO DISABLE OR STOP AUTO CHKDSK DURING

More information

Centurion Technologies

Centurion Technologies Centurion Technologies Answer File Installations Updated 03/25/14 Technical Support Available Monday to Friday hours: 8:30AM until 5:30PM CST/CDT 1-844-265-6055 support@centuriontech.com Introduction SmartShield

More information

Installing and Using Document Distributor

Installing and Using Document Distributor To view or download this or other Lexmark Document Solutions publications, click here. Installing and Using Document Distributor The Lexmark Document Distributor consists of server and client software

More information

CorreLog. LDAP Interface Software Toolkit Users Manual

CorreLog. LDAP Interface Software Toolkit Users Manual CorreLog LDAP Interface Software Toolkit Users Manual http://www.correlog.com mailto:support@correlog.com CorreLog, LDAP Interface Software Toolkit Manual Copyright 2008-2018, CorreLog, Inc. All rights

More information

Software Installation for CS121

Software Installation for CS121 Software Installation for CS121 Dr. Lixin Tao http://csis.pace.edu/~lixin Computer Science Department Pace University August 26, 2005 1 Installation of Java J2SE 5 SDK 1. Visit Start Settings Control Panel

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

QUICK START GUIDE PRINT MANAGER PLUS RELEASE STATION Software Shelf Computer Software. Take Control of Your Network Printing

QUICK START GUIDE PRINT MANAGER PLUS RELEASE STATION Software Shelf Computer Software. Take Control of Your Network Printing Software Shelf Computer Software QUICK START GUIDE PRINT MANAGER PLUS RELEASE STATION 2008 Take Control of Your Network Printing United States 601 Cleveland Street, Suite 710 Clearwater, FL 33755 Sales:

More information

Microsoft. Microsoft. Course 20688D: Supporting Windows 8.1. Level : 200 Technology : Windows 8 Delivery Method : Instructor-led (classroom)

Microsoft. Microsoft. Course 20688D: Supporting Windows 8.1. Level : 200 Technology : Windows 8 Delivery Method : Instructor-led (classroom) Course 20688D: Supporting Windows 8.1 Length : 5 days Audience(s) : IT Professionals Level : 200 Technology : Windows 8 Delivery Method : Instructor-led (classroom) Course Overview About this Course Gain

More information

Copyright 2018, fp Technologies, Inc. of Ohio All Rights Reserved. filepro Installation Windows (Versions 7, 10 and Server Editions)

Copyright 2018, fp Technologies, Inc. of Ohio All Rights Reserved. filepro Installation Windows (Versions 7, 10 and Server Editions) Copyright 2018, fp Technologies, Inc. of Ohio All Rights Reserved These documents and software are covered under the terms and conditions of the fp Technologies of Ohio, Inc. Program License Agreement

More information

Introduction to the shell Part II

Introduction to the shell Part II Introduction to the shell Part II Graham Markall http://www.doc.ic.ac.uk/~grm08 grm08@doc.ic.ac.uk Civil Engineering Tech Talks 16 th November, 1pm Last week Covered applications and Windows compatibility

More information

This document is intended to help you connect to the CVS server on a Windows system.

This document is intended to help you connect to the CVS server on a Windows system. Sourceforge CVS Access Sourceforge CVS Access... 1 Introduction... 1 Tools... 1 Generate Public / Private Keys... 1 Configuring Sourceforge Account... 4 Loading Private Keys for Authentication... 7 Testing

More information

Cloudamize vcenter Agent Installer

Cloudamize vcenter Agent Installer Cloudamize vcenter Agent Installer Summary Cloudamize vcenter Agent Installer can be used by vcenter administrators intending to install Cloudamize's agent on their Virtual Machines. Traditionally the

More information

edp 8.2 Info Sheet - Integrating the ediscovery Platform 8.2 & Enterprise Vault

edp 8.2 Info Sheet - Integrating the ediscovery Platform 8.2 & Enterprise Vault edp 8.2 Info Sheet - Integrating the ediscovery Platform 8.2 & Enterprise Vault 12.0.1 Date: December 2017 Author: Technical Field Enablement (II-TEC@veritas.com) Applies to: ediscovery Platform 8.x and

More information

Daniel Frome Senior System and Database Administrator III

Daniel Frome Senior System and Database Administrator III Daniel Frome Senior System and Database Administrator III 1 Scripting Video Walkthrough Setup Video Walkthrough Migration 2 3 Doing the same thing over and over again, but expecting different results Doing

More information

Install Telepresence Content Server License Key(s)

Install Telepresence Content Server License Key(s) Install Telepresence Content Server License Key(s) Contents Introduction Prerequisites Requirements Components Used Configure Install Release Key and required Option Keys Installing additional Option Keys

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

Basic Shell Scripting Practice. HPC User Services LSU HPC & LON March 2018

Basic Shell Scripting Practice. HPC User Services LSU HPC & LON March 2018 Basic Shell Scripting Practice HPC User Services LSU HPC & LON sys-help@loni.org March 2018 Quotation Exercise 1. Print out your $LOGNAME 2. Print date 3. Print `who am i` 4. Print your current directory

More information

Remove Windows Service Manually Command Line Scheduler

Remove Windows Service Manually Command Line Scheduler Remove Windows Service Manually Command Line Scheduler Every time I start my computer a command prompt and window will pop up saying You need to manually remove the entry in your registry for RocketTab.

More information

Abaqus Student Edition. Installation Instructions

Abaqus Student Edition. Installation Instructions Abaqus Student Edition Installation Instructions Before you begin: 1. Make sure you have administrator privileges, as this is required for the Abaqus Student Edition installation. 2. Turn off all anti-virus

More information

Manual Script Windows Batch If Condition. Statement Example >>>CLICK HERE<<<

Manual Script Windows Batch If Condition. Statement Example >>>CLICK HERE<<< Manual Script Windows Batch If Condition Statement Example IF DEFINED MyVar (ECHO MyVar IS defined) ELSE (ECHO MyVar is NOT defined). The following code, which works in batch files for all MS-DOS, Windows.

More information

WA2393 Data Science for Solution Architects. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1

WA2393 Data Science for Solution Architects. Classroom Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 WA2393 Data Science for Solution Architects Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Class Setup...3 Part 2 - Minimum Software Requirements

More information

RAP as a Service for Dynamics AX

RAP as a Service for Dynamics AX RAP as a Service for Dynamics AX Prerequisites Download the latest prerequisites from: http://www.microsoft.com/en-us/download/details.aspx?id=34698 Last modified: May 24, 2017 Internet connectivity is

More information

EMS.WASTE SFS Chemical Safety, Inc. All Rights Reserved Page 1

EMS.WASTE SFS Chemical Safety, Inc. All Rights Reserved Page 1 EMS.WASTE With the EMS.Waste app, your ipad becomes a mobile hazardous waste tracking tool. Use EMS.Waste to track your consolidation and lab pack items into shipping containers, in and out of accumulation

More information

UNIX Essentials Featuring Solaris 10 Op System

UNIX Essentials Featuring Solaris 10 Op System A Active Window... 7:11 Application Development Tools... 7:7 Application Manager... 7:4 Architectures - Supported - UNIX... 1:13 Arithmetic Expansion... 9:10 B Background Processing... 3:14 Background

More information

INTEGRATING WITH DELL CLIENT COMMAND SUITE: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE

INTEGRATING WITH DELL CLIENT COMMAND SUITE: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE GUIDE SEPTEMBER 2018 PRINTED 4 MARCH 2019 INTEGRATING WITH DELL CLIENT COMMAND SUITE: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE Table of Contents Overview Introduction Purpose Audience

More information

Delete Offline Address Book Outlook 2010 Windows Xp

Delete Offline Address Book Outlook 2010 Windows Xp Delete Offline Address Book Outlook 2010 Windows Xp or Outlook 2010 system requirements If you are running Windows XP, click Start, and then click Run.ost, Offline Address Book (.oab), or other Outlook

More information

Network+ LAB Name. Lab 1a: MS Win 2000/2003/2008 Server Installation

Network+ LAB Name. Lab 1a: MS Win 2000/2003/2008 Server Installation Network+ LAB Name 1a: MS Win 2000/2003/2008 Server Installation This Win Server lab exercise shows students how to install a Win server host. Students (in pairs) install the Server NOS (from a CD) onto

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

JNIOR Support Tool Release Notes

JNIOR Support Tool Release Notes JNIOR Support Tool Release Notes Version 7.5.518.1209 18 May 2018 7.4.417.1208 17 April 2018 7.4.410.1512 10 April 2018 RELEASED to the website May 25, 2018 NOTE: This version or later IS REQUIRED with

More information

Introduction p. 1 Who Should Read This Book? p. 1 What You Need to Know Before Reading This Book p. 2 How This Book Is Organized p.

Introduction p. 1 Who Should Read This Book? p. 1 What You Need to Know Before Reading This Book p. 2 How This Book Is Organized p. Introduction p. 1 Who Should Read This Book? p. 1 What You Need to Know Before Reading This Book p. 2 How This Book Is Organized p. 2 Conventions Used in This Book p. 2 Introduction to UNIX p. 5 An Overview

More information

Virginia Western Community College ITN 110 Client Operating System (Windows 10)

Virginia Western Community College ITN 110 Client Operating System (Windows 10) ITN 110 Client Operating System (Windows 10) Prerequisites Co-requisite: TEL 150 Course Description Covers installation, configuration, administration, management, maintenance, and troubleshooting of the

More information

Perl and R Scripting for Biologists

Perl and R Scripting for Biologists Perl and R Scripting for Biologists Lukas Mueller PLBR 4092 Course overview Linux basics (today) Linux advanced (Aure, next week) Why Linux? Free open source operating system based on UNIX specifications

More information

Drupal Command Line Instructions Windows 7 Network Drive >>>CLICK HERE<<<

Drupal Command Line Instructions Windows 7 Network Drive >>>CLICK HERE<<< Drupal Command Line Instructions Windows 7 Network Drive Applying patches, modifying files according to instructions in the patch file, This page only deals with some basic principles using the command

More information

Office 365 for IT Pros

Office 365 for IT Pros Office 365 for IT Pros Fourth edition Performing a staged migration to Exchange Online Published by Tony Redmond, Paul Cunningham, Michael Van Horenbeeck, and Ståle Hansen. Copyright 2015-2017 by Tony

More information

How to create a System Logon Account in Backup Exec for Windows Servers

How to create a System Logon Account in Backup Exec for Windows Servers How to create a System Logon Account in Backup Exec for Windows Servers Problem How to create a System Logon Account in Backup Exec for Windows Servers Solution The Backup Exec System Logon Account (SLA)

More information

Managing the Startup Folder in Windows 8

Managing the Startup Folder in Windows 8 Managing the Startup Folder in Windows 8 Introduction In this lab, you will customize the Startup Folder and the Run Key in the Registry to manage what applications are started automatically when Windows

More information

Addoro Local 3.0. Installation and Configuration

Addoro Local 3.0. Installation and Configuration Addoro Local 3.0 Installation and Configuration Overview of Addoro Local Addoro Local consists of two Windows Service applications that Addoro customers installs on their local network. Addoro Local Print

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

Introduction to Supercomputing

Introduction to Supercomputing Introduction to Supercomputing TMA4280 Introduction to UNIX environment and tools 0.1 Getting started with the environment and the bash shell interpreter Desktop computers are usually operated from a graphical

More information

If you are currently using a beta version of EPIC that is prior to 4.56 then you need to upgrade to version 5.00.

If you are currently using a beta version of EPIC that is prior to 4.56 then you need to upgrade to version 5.00. Instructions Introduction If you are currently using a beta version of EPIC that is prior to 4.56 then you need to upgrade to version 5.00. The following instructions provide a guide to downloading and

More information

WA2342 NoSQL Systems Comparison. Lab Server VM Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1

WA2342 NoSQL Systems Comparison. Lab Server VM Setup Guide. Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 WA2342 NoSQL Systems Comparison Lab Server VM Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum Software

More information

EASYLABEL Net Print Server

EASYLABEL Net Print Server EASYLABEL Net Print Server Introduction EASYLABEL Net Print Server (ELNPS) is an application that provides a web browser-based interface for label selection and printing. Users of web browsers on Windows

More information

Deploying Lightspeed User Agent v

Deploying Lightspeed User Agent v Deploying Lightspeed User Agent v2.01.14 The LS User Agent can be deployed via most application deployment utilities. This guide will focus on Group Policy Software installation policies. Please read over

More information

Scalability of Office Suites on Terminal Servers

Scalability of Office Suites on Terminal Servers Technical Whitepaper Scalability of Office Suites on Terminal Servers Comparative test between OpenOffice.org 2.1, Microsoft Office 2003, and Microsoft Office 2007 Version 1.1, April 2007 Dr. Bernhard

More information

Creating Android Apps from Rh10

Creating Android Apps from Rh10 Creating Android Apps from Rh10 INTRODUCTION This document was originally written when RoboHelp 10 was the current version and came in a zip file with the required files. As they might not be compatible

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

Application Note: Installing Remote Management Agents Using Service Account Manager Rev 2 June 1, 2006

Application Note: Installing Remote Management Agents Using Service Account Manager Rev 2 June 1, 2006 Application Note: Installing Remote Management Agents Using Service Account Manager Rev 2 June 1, 2006 Lieberman Software Corporation http://www.liebsoft.com Abstract The Microsoft Windows Server Resource

More information

Installing and configuring an Android device emulator. EntwicklerCamp 2012

Installing and configuring an Android device emulator. EntwicklerCamp 2012 Installing and configuring an Android device emulator EntwicklerCamp 2012 Page 1 of 29 Table of Contents Lab objectives...3 Time estimate...3 Prerequisites...3 Getting started...3 Setting up the device

More information

Web Client for Windows

Web Client for Windows Web Client for Windows Version 4.0/4.1/4.2 Updated: March 2017 ITC Systems, Inc One Annabel Lane, Suite 105 San Ramon, CA 94583 (925)790-0070 2017 ITC Systems, Inc. All rights reserved. Windows Web Client

More information

CITRIX 1Y0-200 EXAM QUESTIONS & ANSWERS

CITRIX 1Y0-200 EXAM QUESTIONS & ANSWERS CITRIX 1Y0-200 EXAM QUESTIONS & ANSWERS Number: 1Y0-200 Passing Score: 800 Time Limit: 120 min File Version: 38.7 http://www.gratisexam.com/ CITRIX 1Y0-200 EXAM QUESTIONS & ANSWERS Exam Name: Managing

More information