Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 help and support Forum Windows 8 Forum Vista Tutorials

Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Vista Newsgroup Archive > Misc Newsgroups > VB Script

Vista - Script to delay launch of program(s)

 
 
01-11-2009   #1 (permalink)


Vista Ultimate SP2 x64
Leicester
 
 

Script to delay launch of program(s)

I have two items id like to delay in my msconfig>Startup list that id like to be able to apply a delayed start by about 2 minutes

C:\Program Files (x86)\Hardware\Razer\Habu\Razerhid.exe
C:\Program Files (x86)\Hardware\Razer\Lycosa\Razerhid.exe

These are used to give windows access to my razer devices onboard profiles, i want to dealy them for two reasons, i never change the profiles until im actually in a game, id like to prevent my habu from switching profile everytime i logon (its a physical defect with the habu btw) by disabling the driver for 2 mins it wont happen.

My System SpecsSystem Spec
01-11-2009   #2 (permalink)
Pegasus \(MVP\)


 

Re: Script to delay launch of program(s)


"fieseler" <guest@xxxxxx-email.com> wrote in message
news:32d0fdbb0f87f0995c648f76400a3b2b@xxxxxx-gateway.com...
Quote:

>
> I have two items id like to delay in my msconfig>Startup list that id
> like to be able to apply a delayed start by about 2 minutes
>
> C:\Program Files (x86)\Hardware\Razer\Habu\Razerhid.exe
> C:\Program Files (x86)\Hardware\Razer\Lycosa\Razerhid.exe
>
> These are used to give windows access to my razer devices onboard
> profiles, i want to dealy them for two reasons, i never change the
> profiles until im actually in a game, id like to prevent my habu from
> switching profile everytime i logon (its a physical defect with the habu
> btw) by disabling the driver for 2 mins it wont happen.
>
>
> --
> fieseler
>
> Pirating MS Vista is a crime & a waste of 97 hours looking for a crack
> that doesnt virus your pc!
Put the commands into a batch file which you store in your Startup folder:
@echo off
ping localhost -n 120 > nul
start /b "" /d"C:\Program Files (x86)\Hardware\Razer\Habu" Razerhid.exe
start /b "" /d"C:\Program Files (x86)\Hardware\Razer\Lycosa" Razerhid.exe


My System SpecsSystem Spec
 

 Script to delay launch of program(s) problems?



Thread Tools


Similar topics to: Script to delay launch of program(s)
Thread Forum
Task Scheduler in Vista to launch a script ? Vista performance & maintenance
RE: runas script to launch batch file VB Script
Re: delay script return VB Script
Script to launch a MSGBOX listing PST file locations for a logged onuser VB Script
Vista - Launch Program from another Vista security


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50