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

Size: px
Start display at page:

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

Transcription

1 ' 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 the same location Option Explicit dim strcurrentpath, stroldpath, strkeypath, objshell 'Get the current path from User Shell Folders in registry strcurrentpath = GetCurrentPath() 'Get the old path from the registry value we write using this script stroldpath = GetOldPath() 'If the script runs for the first time, it will create the reg value needed and quit the script If stroldpath = "empty" Then WriteRegVal strcurrentpath, stroldpath wscript.quit 'It continues with the script if a reg value has been created for this computer, meaning the script has run before 'Quit the script if the old or the new Desktop value is local If not (Left(strCurrentPath,2) = "\\") or not (Left(strOldPath,2) = "\\") then wscript.quit If strcurrentpath = stroldpath then wscript.quit 'When the old reg value found in the registry is different to the User Shell folders/desktop value then the script will trigger the migration parts of the script 'Starting point reg key for FindKeyValue strkeypath = "Software" ChangeLinks stroldpath, strcurrentpath FindKeyValue strkeypath, stroldpath, strcurrentpath 'Write the value to the registry so that we can use the same script at the next folder migration WriteRegVal strcurrentpath, stroldpath ' Function WriteRegVal(strValue, stroldvalue)

2 dim oreg, strcomputer, strkeypath, strvaluename strcomputer = "." strkeypath = "Software\FolderMigration" strvaluename = "ServerPath" Set oreg=getobject("winmgmts:{impersonationlevel=impersonate}!\\" &_ strcomputer & "\root\default:stdregprov") If stroldvalue = "empty" then oreg.createkey HKEY_CURRENT_USER, strkeypath oreg.setstringvalue HKEY_CURRENT_USER,strKeyPath,strValueName,strValue ' Function GetCurrentPath() Dim objregistry, strcomputer, ssubkeyname, svaluename, svalue strcomputer = "." Set objregistry = GetObject("winmgmts:\\" & strcomputer & "\root\default:stdregprov") ssubkeyname = "Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" svaluename = "Desktop" objregistry.getstringvalue HKEY_CURRENT_USER, ssubkeyname, svaluename, svalue GetCurrentPath = Left(sValue, Len(sValue) - LEN("\Desktop")) ' Function GetOldPath() Dim objregistry, strcomputer, SubKey, arrsubkeys, strkeypath, ssubkeyname, svaluename, svalue, arrvaluenames, arrvaluetypes

3 strcomputer = "." Set objregistry = GetObject("winmgmts:\\" & strcomputer & "\root\default:stdregprov") strkeypath = "Software" objregistry.enumkey HKEY_CURRENT_USER, strkeypath, arrsubkeys For each SubKey in arrsubkeys If Subkey = "FolderMigration" Then ssubkeyname = "Software\FolderMigration" svaluename = "ServerPath" ssubkeyname, _ objregistry.enumvalues HKEY_CURRENT_USER, arrvaluenames, arrvaluetypes If IsArray(arrValueNames) Then objregistry.getstringvalue HKEY_CURRENT_USER, ssubkeyname, svaluename, svalue GetOldPath = svalue Exit for GetOldPath = "empty" GetOldPath = "empty" ' Function ChangeLinks(OLDHOMEPATH, NEWHOMEPATH) 'wscript.echo OLDHOMEPATH & " OLD" 'wscript.echo NEWHOMEPATH & " NEW" dim wso, fso, UserDesktop, Folder, file, fullname, link, targetpath, workingdirectory, NewShortCutTargetPath, NewWorkingDirectoryPath, vbtexctcompare set wso = CreateObject("Wscript.Shell") set fso = CreateObject("Scripting.FileSystemObject") 'Gets Desktop Path UserDesktop = LCASE(Wso.SpecialFolders("Desktop")) 'Processes all LNK files on the desktop and replace the Old Path with the New Path

4 For each file in fso.getfolder(userdesktop).files = 0 then 'check only link files If strcomp(right(file.name,4),".lnk",vbtexctcompare) 'Find full path of all shortcuts fullname = fso.getabsolutepathname(file) shortcut LCase(link.workingdirectory) 'Find full path and workingdirectory of set link = wso.createshortcut(fullname) targetpath = LCase(link.targetpath) workingdirectory = 'Windows 7 corrects parts of the lnk files automatically when redirecting folders 'The lnk files will work but show an incorrect target if you click properties, this is why the below is needed 'Detect targetpath which already have been changed and save it again lcase(left(targetpath,len(newhomepath))) = lcase(newhomepath) then NewShortCutTargetPath = NEWHOMEPATH & MID(targetpath,LEN(NEWHOMEPATH)+1) link.targetpath = NewShortCutTargetPath End lcase(left(workingdirectory,len(newhomepath))) = lcase(newhomepath) then NewWorkingDirectoryPath = NEWHOMEPATH & MID(workingdirectory,LEN(NEWHOMEPATH)+1) NewWorkingDirectoryPath End link.workingdirectory = 'Read shortcut path and detect old homefolder UNC lcase(left(targetpath,len(oldhomepath))) = lcase(oldhomepath) then NewShortCutTargetPath = NEWHOMEPATH & MID(targetpath,LEN(OLDHOMEPATH)+1) link.targetpath = NewShortCutTargetPath End lcase(left(workingdirectory,len(oldhomepath))) = lcase(oldhomepath) then NewWorkingDirectoryPath = NEWHOMEPATH & MID(workingdirectory,LEN(OLDHOMEPATH)+1) NewWorkingDirectoryPath link.workingdirectory =

5 End link.save End if ' Function FindKeyValue(strKeyPath,OldValue, NewValue) Dim oreg, strcomputer, errorcheck, arrsubkeys, arrvaluenames, arrvaluetypes, strvalue, Subkey, strnewkeypath, i, stradobeold, stradobenew, strvaluenew strcomputer = "." const REG_SZ = 1 Set oreg=getobject("winmgmts:{impersonationlevel=impersonate}!\\" &_ strcomputer & "\root\default:stdregprov") errorcheck = oreg.enumkey(hkey_current_user, strkeypath, arrsubkeys) If (errorcheck=0 and IsArray(arrSubKeys)) then For Each subkey In arrsubkeys strnewkeypath = strkeypath & "\" & subkey If Not(strNewKeyPath = "Software\Classes" or strnewkeypath = "Software\Microsoft\Windows") Then FindKeyValue strnewkeypath,oldvalue, NewValue oreg.enumvalues HKEY_CURRENT_USER, strkeypath, _ arrvaluenames, arrvaluetypes If (errorcheck=0 and IsArray(arrValueNames)) then For i=0 To UBound(arrValueNames) oreg.getstringvalue HKEY_CURRENT_USER, strkeypath, arrvaluenames(i), strvalue If (Instr(lcase(strValue), lcase(oldvalue))) Then strvaluenew = Replace(lcase(strValue),lcase(OldValue),lcase(NewValue)) oreg.setstringvalue HKEY_CURRENT_USER,strKeyPath,arrValueNames(i),strValueNew

6 "/"), len(oldvalue)-2) "/"), len(newvalue)-2) lcase(stradobeold))) Then 'Extra for Adobe recent files stradobeold = Right(Replace(OldValue, "\", stradobenew = Right(Replace(NewValue, "\", If (Instr(lcase(strValue), strvaluenew = Replace(lcase(strValue),lcase(strAdobeOld),lcase(strAdobeNew)) oreg.setstringvalue HKEY_CURRENT_USER,strKeyPath,arrValueNames(i),strValueNew End if

DIGIBRANDING SIGNATURE SCRIPT Stepped Out

DIGIBRANDING SIGNATURE SCRIPT Stepped Out DIGIBRANDING SIGNATURE SCRIPT Stepped Out Here I walked the script and added some info on setup variables. Pay Attention to notes and items in RED START ** Declare some constants 'On the next line edit

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

User Environment Variables in App-V 5.0 with SP1, SP2 and SP2 Hotfix 4

User Environment Variables in App-V 5.0 with SP1, SP2 and SP2 Hotfix 4 User Environment Variables in App-V 5.0 with SP1, SP2 and SP2 Hotfix 4 Dan Gough wrote an excellent article named: User Environment Variables in App-V 5 Scripts. To summarize: it is about the fact that

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

Winscribe MSI and Automatic Script Installation

Winscribe MSI and Automatic Script Installation Winscribe MSI and Automatic Script Installation 4.2 Copyright 2013, Winscribe Inc. All rights reserved. Publication Date: October 2013 Copyright 2013 Winscribe Inc. All Rights Reserved. Portions of the

More information

Group Policy Deployment for CIC Applications

Group Policy Deployment for CIC Applications Group Policy Deployment for CIC Applications Technical Reference 2018 R1 Last updated September 27, 2017 (See Change Log for summary of changes.) Abstract Genesys recommends group policy deployment of

More information

The Item_Master_addin.xlam is an Excel add-in file used to provide additional features to assist during plan development.

The Item_Master_addin.xlam is an Excel add-in file used to provide additional features to assist during plan development. Name: Tested Excel Version: Compatible Excel Version: Item_Master_addin.xlam Microsoft Excel 2013, 32bit version Microsoft Excel 2007 and up (32bit and 64 bit versions) Description The Item_Master_addin.xlam

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

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

STEP 1: PREPARE FOR DATA MIGRATION 1. Right-click the desktop and choose New > Folder. a. Type For Transferring and press Enter to name the folder.

STEP 1: PREPARE FOR DATA MIGRATION 1. Right-click the desktop and choose New > Folder. a. Type For Transferring and press Enter to name the folder. PC Support and Repair Chapter 5 Data Migration Lab 5144 When a new computer is purchased or a new operating system is installed, it is often desirable to migrate a user s data to the new computer or OS.

More information

Windows Batch file to Easily Convert MagicLantern.RAW files into CinemaDNG Posted by idealsceneprod - 09 Nov :17

Windows Batch file to Easily Convert MagicLantern.RAW files into CinemaDNG Posted by idealsceneprod - 09 Nov :17 Windows Batch file to Easily Convert MagicLantern.RAW files into Posted by idealsceneprod - 09 Nov 2013 06:17 I just wrote up a quick little batch file (Windows/DOS) onto which you can drag your.raw files,

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

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

WinINSTALL 9.0 Master Document to be used as an internal resource only

WinINSTALL 9.0 Master Document to be used as an internal resource only INDEX Create basic package Editing your package How to add serials and keys Action codes Define the custom action - Pre-processing during installation - Post-processing during installation - Pre-processing

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

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

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

Streaming Profile Recipe

Streaming Profile Recipe Streaming Profile Recipe Package_Manufacturer_Version Streaming Profile Recipe for Package_Manufacturer_Version Submitted by: Date Submitted: 3/3/2011 11:25:00 AM

More information

A+ Guide to Managing & Maintaining Your PC, 8th Edition. Chapter 11 Optimizing Windows

A+ Guide to Managing & Maintaining Your PC, 8th Edition. Chapter 11 Optimizing Windows Chapter 11 Optimizing Windows Objectives Learn about Windows utilities and tools you can use to solve problems with Windows Learn how to optimize Windows to improve performance Learn how to manually remove

More information

Lab - Data Migration in Windows

Lab - Data Migration in Windows Lab - Data Migration in Windows Introduction When a new computer is purchased or a new operating system is installed, it is often desirable to migrate a user s data to the new computer or OS. Windows has

More information

NetIQ Advanced Authentication Framework - Citrix XenDesktop Plugin. Installation Guide. Version 5.1.0

NetIQ Advanced Authentication Framework - Citrix XenDesktop Plugin. Installation Guide. Version 5.1.0 NetIQ Advanced Authentication Framework - Citrix XenDesktop Plugin Installation Guide Version 5.1.0 Table of Contents 1 Table of Contents 2 Introduction 3 About This Document 3 System Requirements 4 Installing

More information

Load all AppV 5.0 packages into the AppV Cache

Load all AppV 5.0 packages into the AppV Cache Load all AppV 5.0 packages into the AppV Cache After the migration from SCCM 2007 to SCCM 2012 some users had an issue with accessing their AppV 5.0 packages: the virtual package could not be found in

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

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

Registry Functions. Each of the W/32 registry functions has a syntax of the form: CALL creg ( key%,, ADDROF(result%) )

Registry Functions. Each of the W/32 registry functions has a syntax of the form: CALL creg ( key%,, ADDROF(result%) ) Registry Functions Introduction The registry is a system-defined database that applications and Microsoft Windows system components use to store and retrieve configuration data. This appendix to the W/32

More information

M-FILES SETUP: ADVANCED USER'S GUIDE

M-FILES SETUP: ADVANCED USER'S GUIDE M-FILES CORPORATION M-FILES SETUP: ADVANCED USER'S GUIDE CUSTOMIZATION, COMMAND-LINE OPTIONS, AND CENTRALIZED DEPLOYMENT VERSION 1.5 CONTENTS 1. Change History... 4 2. Overview... 4 2.1. M-Files Installation

More information

Outlook Profiler 2.6 Series Instruction Manual

Outlook Profiler 2.6 Series Instruction Manual Outlook Profiler 2.6 Series Instruction Manual Copyright 2001 2017 GOFF Concepts LLC. All rights reserved. GOFF Concepts assumes no responsibility for errors or omissions in this document; nor does GOFF

More information

Automated Flashing and Testing with CANoe, vflash and VN89xx Version Application Note AN-IDG-1-018

Automated Flashing and Testing with CANoe, vflash and VN89xx Version Application Note AN-IDG-1-018 Automated Flashing and Testing with CANoe, vflash and VN89xx Version 1.0 2019-02-19 Application Note AN-IDG-1-018 Author Restrictions Abstract Thomas Schmidt Public Document Automatic updating an ECU s

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

PACE Suite. Release Notes. Version Document version

PACE Suite. Release Notes. Version Document version PACE Suite Release Notes Version 3.4. Document version 05034 Table of Contents PACE SUITE 3.4.... Summary... What s new: MSI Editor 3.4. (PACE Suite v. 3.4.)... Bug fixes... What s new: MSI Generator 3.3.

More information

Optimal Global Procurement System. (KG-Pro) Login Manual

Optimal Global Procurement System. (KG-Pro) Login Manual Optimal Global Procurement System (KG-Pro) Login Manual Ver.1.1 Contents 1 Foreword... 2 2 Preparation for using KG-Pro... 2 2.1 Hardware... 2 2.2 Software... 2 2.3 User ID... 3 2.4 Required items for

More information

Evolution Technical Information Sharing

Evolution Technical Information Sharing Evolution Technical Information Sharing 25 June 2012 ARTICLE 1 The following error message may be displayed when trying to link a document to an incident : REASON AND SOLUTION: 1. First always ensure that

More information

Windows 10 IoT QSG Edited Draft

Windows 10 IoT QSG Edited Draft Initial Setup and Configuration Windows 10 IoT QSG Edited Draft By default, when you first boot up your new Windows 10 IoT 10ZiG Thin Client, you are automatically logged in as Administrator. While logged

More information

ACSC271 Operating Systems Answer Sheet: 3 Semester: Fall 2017 Instructor:

ACSC271 Operating Systems Answer Sheet: 3 Semester: Fall 2017 Instructor: ACSC271 Operating Systems Answer Sheet: 3 Semester: Fall 2017 Instructor: Christos Markides 1) Informally, a process is a program in execution. A process is more than the program code, which is sometimes

More information

Creating an Adobe Connect Presentation: Using Your Personal Computer to Record and Publish

Creating an Adobe Connect Presentation: Using Your Personal Computer to Record and Publish Creating an Adobe Connect Presentation: Using Your Personal Computer to Record and Publish This document outlines the process of creating a streaming presentation using PowerPoint 2007. Note: Before beginning

More information

RES Workspace Manager 2012 Basic Exam

RES Workspace Manager 2012 Basic Exam RES Workspace Manager 2012 Basic Exam Number: ES0-007 Passing Score: 420 Time Limit: 130 min File Version: 1.0 http://www.gratisexam.com/ Exam: 60 Questions Maximum score = 600 Passing score = 420 Exam

More information

WHITEPAPER DEEP FREEZE ENTERPRISE PATCH MANAGEMENT

WHITEPAPER DEEP FREEZE ENTERPRISE PATCH MANAGEMENT TM WHITEPAPER DEEP FREEZE ENTERPRISE PATCH MANAGEMENT Content Page Introduction...03 Scheduled Patch Maintenance...03 Scheduling Windows Updates...04 Scheduling Windows Updates using a Windows Update Workstation

More information

Sage Residential Management Versions 9.5 through Installation Guide

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

More information

The TCP redirecting plugin PRINTED MANUAL

The TCP redirecting plugin PRINTED MANUAL The TCP redirecting plugin PRINTED MANUAL TCP redirecting plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including

More information

Liquidware Labs, Inc.

Liquidware Labs, Inc. Liquidware Labs, Inc. ProfileUnity Help Manual Version 4.8 April 2011 Copyright 2011 Liquidware Labs, Inc. All Rights Reserved. Page 1/122 Disclaimer: This document is designed as a guide to assist you

More information

ProfileUnity. with FlexApp Technology. ADMINISTRATOR TRAINING AND LAB GUIDE version 1.0

ProfileUnity. with FlexApp Technology. ADMINISTRATOR TRAINING AND LAB GUIDE version 1.0 ProfileUnity with FlexApp Technology ADMINISTRATOR TRAINING AND LAB GUIDE version 1.0 Introduction This guide is authored by experts at Liquidware Labs to provide information and guidance concerning ProfileUnity

More information

PACE Suite. Release Notes. Version 3.3.1

PACE Suite. Release Notes. Version 3.3.1 PACE Suite Release Notes Version 3.3.1 Table of Contents VERSION 3.3.1 (07.11.2014)... 2 New features of MSI Editor... 2 Improvements of MSI Editor... 3 Bug fixes of MSI Editor... 3 VERSION 3.3.0 (03.10.2014)...

More information

Documentation on File Management for website

Documentation on File Management for website Documentation on File Management for website File Manager The cpanel FILE MANAGER allows you to modify the files and contents of files that are part of your website. The FILE MANAGER allows point and click

More information

Retrieve Download File from CSDI Installation Instructions

Retrieve Download File from CSDI Installation Instructions Retrieve Download File from CSDI Installation Instructions Rev. 12-001 FOOD & NUTRITION MANAGEMENT SYSTEMS This instruction sheet provides instructions for installing our Retrieve Download File from CSDI

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

Debugging Runtime Scripts in Operations Manager and Essentials 2007 The third installment in the System Center Forum Scripting Series

Debugging Runtime Scripts in Operations Manager and Essentials 2007 The third installment in the System Center Forum Scripting Series Debugging Runtime Scripts in Operations Manager and Essentials 2007 The third installment in the System Center Forum Scripting Series Author: Neale Brown, MCSE (Messaging) Contributor, System Center Forum

More information

Liquidware Labs, Inc.

Liquidware Labs, Inc. Liquidware Labs, Inc. ProfileUnity Help Manual Version 4.7 November 2010 Copyright 2010 Liquidware Labs, Inc. All Rights Reserved. Page 1/114 Disclaimer: This document is designed as a guide to assist

More information

Script Host 2.0 Developer's Guide

Script Host 2.0 Developer's Guide _ Microsoft icrosoft Script Host 2.0 Developer's Guide Günter Born Introduction xv parti Introduction to the World of Script Programming chapter i Introduction to Windows Script Host 3 WHAT YOU CAN DO

More information

1 Introduction. 2 Install the tool. Millennium 2000 M820 ChessGenius Exclusive, PGN. Version:

1 Introduction. 2 Install the tool. Millennium 2000 M820 ChessGenius Exclusive, PGN. Version: 1 Introduction We want to improve our ChessGenius Exclusive and make it even better. Therefore, we are always happy to receive your feedback at quality@computerchess.com Currently there are two tools for

More information

General QB Setup Instructions 2/8/2019

General QB Setup Instructions 2/8/2019 What s happening? General QB Setup Instructions 2/8/2019 A. Ag IT will install QuickBooks Pro 2019 on your computer on Tuesday, January 29, 2019. A new shortcut should appear on your desktop. B. You will

More information

Load all AppV 5.0 packages into the AppV Cache

Load all AppV 5.0 packages into the AppV Cache Load all AppV 5.0 packages into the AppV Cache After the migration from SCCM 2007 to SCCM 2012 some users had an issue with accessing their AppV 5.0 packages: the virtual package could not be found in

More information

UserEnvManager Manual

UserEnvManager Manual UserEnvManager Manual 1. What it is This software enables administrators to maintain shortcuts, network drive mappings and network printers on Windows computers (client computers or terminal servers) of

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

Sage 300 Construction and Real Estate (formerly Sage Timberline Office)

Sage 300 Construction and Real Estate (formerly Sage Timberline Office) Sage 300 Construction and Real Estate (formerly Sage Timberline Office) Version 18 User's Guide This is a publication of Sage Software, Inc. 2018 The Sage Group plc or its licensors. All rights reserved.

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

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

Colligo Manager. White Labeling

Colligo  Manager. White Labeling White Labeling Contents White Labeling... 2 Registry Path and License Key... 2 Enabling Branding... 2 Disabling Branding... 2 Using the MSI... 3 Using Registry Settings... 4 Branding Properties & Locations...

More information

Chapter 1: Windows Platform and Architecture. You will learn:

Chapter 1: Windows Platform and Architecture. You will learn: Chapter 1: Windows Platform and Architecture Windows 2000 product family. New features/facilities of. Windows architecture. Changes to the kernel and kernel architecture. New features/facilities. Kernel

More information

TeleScript ProNEWS ENPS Newsroom Operations Guide

TeleScript ProNEWS ENPS Newsroom Operations Guide TeleScript ProNEWS ENPS Newsroom Operations Guide Page 1 of 14 TeleScript ProNEWS ENPS Newsroom Operations Guide Rev. June 2014 Abstract This document describes TeleScript ProNEWS teleprompting system's

More information

Release Notes. Version

Release Notes. Version Release Notes Version 10.2.500.0 Copyright Notice This document contains the confidential information and/or proprietary property of Ivanti, Inc. and its affiliates (referred to collectively as Ivanti

More information

Browser Configuration Reference

Browser Configuration Reference Sitecore CMS 7.0 or later Browser Configuration Reference Rev: 2013-09-30 Sitecore CMS 7.0 or later Browser Configuration Reference Optimizing Internet Explorer and other web browsers to work with Sitecore

More information

Lab - Configure Data Backup and Recovery in Windows 7 and Vista

Lab - Configure Data Backup and Recovery in Windows 7 and Vista Lab - Configure Data Backup and Recovery in Windows 7 and Vista Introduction In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment A computer with Windows

More information

How to change the Volume Licensing product key on a computer that is running Windows XP Service Pack 1 and later versions of Windows XP

How to change the Volume Licensing product key on a computer that is running Windows XP Service Pack 1 and later versions of Windows XP Article ID: 328874 - Last Review: November 6, 2008 - Revision: 8.1 How to change the Volume Licensing product key on a computer that is running Windows XP Service Pack 1 and later versions of Windows XP

More information

The customer.inf setup is only available for the Barracuda VPN Client. It requires administrator rights on the target system.

The customer.inf setup is only available for the Barracuda VPN Client. It requires administrator rights on the target system. In this Article: Preparing a The customer.inf setup is only available for the Barracuda VPN Client. It requires administrator rights on the target system. Customer.inf setup is a comprehensive installation

More information

Remote Desktop Remove Instructions Windows 7 Registry Key

Remote Desktop Remove Instructions Windows 7 Registry Key Remote Desktop Remove Instructions Windows 7 Registry Key We've already seen how to enable, disable the Remote Desktop connection However, when you establish a Remote Desktop connection on Windows 8.1,

More information

PDF Reader Controller. 1. Introduction. Author: SkySof Software Inc. at Download URL:

PDF Reader Controller. 1. Introduction. Author: SkySof Software Inc. at   Download URL: PDF Reader Controller 1. Introduction Author: SkySof Software Inc. at http://www.skysof.com Download URL: http://www.getfilez.com/pdfrdr.zip PDF Reader Controller is a Window s Service that runs in the

More information

Sage 300 Construction and Real Estate (formerly Sage Timberline Office)

Sage 300 Construction and Real Estate (formerly Sage Timberline Office) Sage 300 Construction and Real Estate (formerly Sage Timberline Office) Version 16.1 User's Guide This is a publication of Sage Software, Inc. 2017 The Sage Group plc or its licensors. All rights reserved.

More information

Global Image Management System For epad-vision. User Manual Version 1.9

Global Image Management System For epad-vision. User Manual Version 1.9 Global Image Management System For epad-vision User Manual Oliver Lan Version 1.9 January 31, 2013 Global Image Management System www.epadlink.com 1 Contents 1. Introduction 3 2. Initial Setup Requirements

More information

The Log packing plugin PRINTED MANUAL

The Log packing plugin PRINTED MANUAL The Log packing plugin PRINTED MANUAL Log packing plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying,

More information

Guidance for Admin Tool

Guidance for Admin Tool RICOH Interactive Whiteboard Launcher Guidance for Admin Tool This manual describes how to use Admin Tool for RICOH Interactive Whiteboard Launcher (hereinafter, referred to as RICOH Launcher). To start

More information

OpenNebula - Feature #2395 Provide windows guest contextualization scripts

OpenNebula - Feature #2395 Provide windows guest contextualization scripts OpenNebula - Feature #2395 Provide windows guest contextualization scripts 10/21/2013 10:31 AM - Tino Vázquez Status: Closed Start date: 10/21/2013 Priority: Normal Due date: Assignee: % Done: 0% Category:

More information

Migrating from Connect To Image Center 2.0

Migrating from Connect To Image Center 2.0 Migrating from Connect To Image Center 2.0 Image Center 2.0 is a substantial upgrade in data management compared to ShowCase Connect. It provides two key features: Quick Access to Prior Studies - All studies

More information

How to set up Portnox with OPSWAT GEARS

How to set up Portnox with OPSWAT GEARS How to set up Portnox with OPSWAT GEARS About This Guide... 2 Portnox Compliance Policy Creation... 3 Compliance Policy Creation: GEARS Compliance on Windows... 4 Compliance Policy Creation: GEARS Compliance

More information

Installing PCS Director in a Citrix or Terminal Services Environment

Installing PCS Director in a Citrix or Terminal Services Environment Installing PCS Director in a Citrix or Terminal Services Environment Summary This document explains how to install PCS Director in a Citrix Metaframe or a Terminal Services environment. It also includes

More information

NetIQ Advanced Authentication Framework - Virtual Desktop Authentication (VDA) Profile Editor. Administrator's Guide. Version 5.1.

NetIQ Advanced Authentication Framework - Virtual Desktop Authentication (VDA) Profile Editor. Administrator's Guide. Version 5.1. NetIQ Advanced Authentication Framework - Virtual Desktop Authentication (VDA) Profile Editor Administrator's Guide Version 5.1.0 Table of Contents 1 Table of Contents 2 Introduction 3 About This Document

More information

Sage 300 Construction and Real Estate (formerly Sage Timberline Office)

Sage 300 Construction and Real Estate (formerly Sage Timberline Office) Sage 300 Construction and Real Estate (formerly Sage Timberline Office) Version 17.1 User's Guide This is a publication of Sage Software, Inc. 2017 The Sage Group plc or its licensors. All rights reserved.

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

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

Basler Cameras SILENTLY INSTALLING SELECTED PYLON FEATURES APPLICATION NOTES

Basler Cameras SILENTLY INSTALLING SELECTED PYLON FEATURES APPLICATION NOTES DRAFT Basler Cameras SILENTLY INSTALLING SELECTED PYLON FEATURES APPLICATION NOTES Document Number: AW000846 Version: 05 Language: 000 (English) Release Date: 7 August 2013 Software Version: 4 Contacting

More information

VMware User Environment Manager Administration Guide. VMware User Environment Manager 9.1

VMware User Environment Manager Administration Guide. VMware User Environment Manager 9.1 VMware User Environment Manager Administration Guide VMware User Environment Manager 9.1 VMware User Environment Manager Administration Guide You can find the most up-to-date technical documentation on

More information

How to set up ForeScout CounterACT with OPSWAT GEARS Client

How to set up ForeScout CounterACT with OPSWAT GEARS Client How to set up ForeScout CounterACT with OPSWAT GEARS Client About This Guide... 2 Custom Policy Creation... 3 GEARS Compliance on Mac... 3 GEARS Compliance on Windows... 10 Managed vs. Guest Device...

More information

Last updated: January 19, Webtop Setup User Guide

Last updated: January 19, Webtop Setup User Guide Last updated: January 19, 2017 Webtop Setup User Guide Table of Contents ServicePRO Webtop Setup User Guide... 2 1. ServicePRO Portal Setup Information to Note... 2 2. Setting up ServicePRO Webtop in Client

More information

Immidio White Paper Things You Always Wanted To Know About Windows Profile Management

Immidio White Paper Things You Always Wanted To Know About Windows Profile Management Immidio White Paper Things You Always Wanted To Know About Windows Profile Management Abstract Why are Windows user profiles so critically important for corporate IT environments and how can they be managed

More information

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

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

More information

VMware User Environment Manager Administration Guide

VMware User Environment Manager Administration Guide VMware User Environment Manager Administration Guide VMware User Environment Manager 9.2 This document supports the version of each product listed and supports all subsequent versions until the document

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

INSTALLING THE PS3 XBOX READY SOFTWARE:

INSTALLING THE PS3 XBOX READY SOFTWARE: INSTALLING THE PS3 XBOX READY SOFTWARE: 1. Insert the Installation CD to CD-ROM drive and execute Ready_Setup.exe NOTE: If it is the first time for the target USB disk using under this software, the software

More information

Colligo Briefcase. White Labeling

Colligo Briefcase. White Labeling White Labeling CONTENTS White Labeling... 2 Registry Path and License Key... 2 Enabling Branding... 2 Disabling Branding... 2 Using the MSI... 3 Using Registry Settings... 4 Branding Properties and Locations...

More information

Installation Instructions

Installation Instructions Help Desk 0117 918 1271 software@jordans.co.uk Installation Instructions Installing PCSec to a new PC Adding a new user Jordans Limited First Floor, Templeback, 10 Temple Back, Bristol BS1 6FL Help desk:

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

Pursuit 7 for Windows

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

More information

Outlook to Mac Mail. Installation Guide. Overview Migration Software System Requirements Application Loading...

Outlook to Mac Mail. Installation Guide. Overview Migration Software System Requirements Application Loading... Overview... 3 01 Migration Software... 3 01 System Requirements... 3 01 Application Loading... 3 02 Software Installation... 3 03 PC Install from Download Link... 3 03 Migration Process on the Old PC...

More information

WORKING WITH LIBRARIES IN WINDOWS 7

WORKING WITH LIBRARIES IN WINDOWS 7 WORKING WITH LIBRARIES IN WINDOWS 7 Existing Libraries Before we create our custom library, we should be aware that we already have some libraries configured on our system. Libraries created by default

More information

Using the Dev C++ Compiler to Create a Program

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

More information

The same command line options are available on our per-machine installs as well.

The same command line options are available on our per-machine installs as well. Engage Configuration Installer Parameters You can pass command line parameters to the Engage setup executable. These parameters are helpful for unattended silent installs particularly when deploying to

More information

Document Management Upgrade Guide

Document Management Upgrade Guide Document Management Upgrade Guide March 2014, Version 8.9 Minimum Requirements Ensure that your Document Management environment conforms to the following requirements. Document Management Image Server

More information

VMware User Environment Manager Administration Guide. VMware User Environment Manager 9.5

VMware User Environment Manager Administration Guide. VMware User Environment Manager 9.5 VMware User Environment Manager Administration Guide VMware User Environment Manager 9.5 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you

More information

Software Restriction for Zero Client Users (AppLocker Group Policy)

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

More information

Version 9.0 SecureDocs Module Guide

Version 9.0 SecureDocs Module Guide Version 9.0 SecureDocs Module Guide RightFax 9.0 SecureDocs Module Guide ii Edition Information in this document applies to version 9.0 of the SecureDocs Module Guide. Copyright Notice 2004 Captaris. All

More information

Version 3.50 / 04/15/2009

Version 3.50 / 04/15/2009 Version 3.50 / 04/15/2009 Copyright 2006 2009 Mindleads Technology UltraLogon user manual 1 / 47 Contents Copyright... 3 Document Conventions... 4 Icons... 4 Typographic Conventions... 4 Introduction...

More information