Topic: SOLVED: RunOnceEx which ID should I use?

Hello all members and visitors,

I use the DriverPacks BASE 6.06.1 and i choosed the option RunOnceEx with Default start ID 937 as the method for finish the installation.
But I dont understand what the start ID is?

DPs_ROE.cmd

echo CMDOW @ /HID
set KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx
reg add %KEY% /V TITLE /D "Finishing DriverPacks Installation" /f
reg add %KEY%\937 /VE /D "DriverPacks: finishing..." /f
reg add %KEY%\937 /V 1 /D "%SystemDrive%\fnsh_log.cmd" /f

Can i copy & paste it into my RunOneEx.cmd?

Example: //7zip

cmdow @ /HID
@echo off

SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx

REG ADD %KEY% /V TITLE /D "Installing Applications" /f

REG ADD %KEY% /V TITLE /D "Finishing DriverPacks Installation" /f
REG ADD %KEY%\001 /VE /D "DriverPacks: finishing..." /f
REG ADD %KEY%\001 /V 1 /D "%SystemDrive%\fnsh_log.cmd" /f
REG ADD %KEY%\002 /VE /D "Microsoft .NET Framework SDK 1.1" /f
REG ADD %KEY%\002 /V 1 /D "%systemdrive%\Applications\Microsoft.NET.Framework.SDK.(Software.Development.Kit).1.1.(x86).exe" /f
REG ADD %KEY%\003 /VE /D "Microsoft .NET Framework SDK 2.0" /f
REG ADD %KEY%\003 /V 1 /D "%systemdrive%\Applications\Microsoft.NET.Framework.SDK.(Software.Development.Kit).2.0.(x86).exe" /f
EXIT

Now what about the timeline? Is my RunOnceEx.cmd correct? Why is the default ID 937??

ADDITIONAL QUESTIONS
;
; Generated by DriverPacks BASE 6.06.1
;

[Commands]
"DPs_ROE.cmd"" <---- double ""? What does that means?
"RunOnceEx.cmd"




Greetz to all


Question!

Last edited by Bâshrat the Sneaky (2006-06-28 05:18:09)

Re: SOLVED: RunOnceEx which ID should I use?

The # means which command to perform first.  You don't need to add anything to your existing runonce file.  The DP Base takes care of that for you.

As for the double quote...  That is a typo created by the DP Base.  It will be fixed in the next version.

937 would be a good ID to use in your case.  It will make sure the DP Control Panels are installed last. wink

Re: SOLVED: RunOnceEx which ID should I use?

Thanks for your reply! It is helpful for me smile)

Have a nice day!


Questions