Help - Search - Members - Calendar
Full Version: GuiRunOnceEx
MSFN Forums > Unattended Windows Discussion & Support > Application Installs

   


Google Internet Forums Unattended CD/DVD Guide
mediatx
Hi guys

I followed this guide on msfn and everything goes fine...
But when logging on, the "bigger" apps needs longer to install and the next installation is already startin nistead of waiting until the install frombefore is finished.
I took EXACT the settings from the examples page and really don't know what to do as some installers abort as there are too many parallel installs

Will I have to add a time value linke "one inute" or something like that, or am i using the wron switches?

Thanks for any hint...

here the used "code":
CODE
cmdow @ /HID
@echo off

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

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

REG ADD %KEY%\001 /VE /D "Preparing Installation..." /f
REG ADD %KEY%\001 /V 1 /D "%systemdrive%\install\applications\prepare.cmd" /f

REG ADD %KEY%\010 /VE /D "Dot Net Framework 1.1" /f
REG ADD %KEY%\010 /V 1 /D "%systemdrive%\install\applications\DotNetFramework\netfx.msi /qb" /f

REG ADD %KEY%\020 /VE /D "eTrust Antivirus 7.0" /f"
REG ADD %KEY%\020 /V 1 /D "%systemdrive%\install\applications\etrustAntivirus\setup.exe -s" /f

REG ADD %KEY%\030 /VE /D "Adobe Acrobat Reader 6" /f
REG ADD %KEY%\030 /V 1 /D "%systemdrive%\install\applications\AdobeReader\AdbeRdr60_enu_basic.exe -p"-s /qn" /f

REG ADD %KEY%\040 /VE /D "Windows Messenger 5.0" /f
REG ADD %KEY%\040 /V 1 /D "%systemdrive%\install\applications\MSN_Messenger\messenger.msi /qb" /f

REG ADD %KEY%\050 /VE /D "Cisco Aironet Client Utility" /f"
REG ADD %KEY%\050 /V 1 /D "%systemdrive%\install\applications\Cisco\setup.exe -s" /f

REG ADD %KEY%\055 /VE /D "Apllying Additional Hotfixes" /f"
REG ADD %KEY%\055 /V 1 /D "%systemdrive%\install\hotfixes\hotfixes.cmd" /f

REG ADD %KEY%\060 /VE /D "Performing Registry Modifications" /f
REG ADD %KEY%\060 /V 1 /D "REGEDIT /S %systemdrive%\install\applications\regtweaks.reg" /f

REG ADD %KEY%\070 /VE /D "Setting File Associations" /f
REG ADD %KEY%\070 /V 1 /D "REGEDIT /S %systemdrive%\install\applications\filetypes.bat" /f

REG ADD %KEY%\080 /VE /D "Gigabit LAN Network" /f
REG ADD %KEY%\080 /V 1 /D "%systemdrive%\drivers\001_network\PROSet.msi /qn" /f

REG ADD %KEY%\081 /VE /D "Cisco W-LAN PCI 350" /f
REG ADD %KEY%\081 /V 1 /D "%systemdrive%\Install\applications\Cisco\IWSetup.exe" /f

REG ADD %KEY%\082 /VE /D "Hauppauge Win PVR 350" /f
REG ADD %KEY%\082 /V 1 /D "%systemdrive%\drivers\003_tv_card\pvr350_setup.cmd" /f

REG ADD %KEY%\083 /VE /D "ASUS ATI 9800 XT" /f
REG ADD %KEY%\083 /V 1 /D "%systemdrive%\Install\applications\Asus\gfx\9800xt\setup.exe -s" /f

REG ADD %KEY%\084 /VE /D "ASUS Smartdoctor" /f
REG ADD %KEY%\084 /V 1 /D "%systemdrive%\Install\applications\Asus\utilities\SmartDoctor\SmartDoc\setup.exe" /f

REG ADD %KEY%\085 /VE /D "Creative Soundblaster 2 ZS Pro Platinum" /f
REG ADD %KEY%\085 /V 1 /D "%systemdrive%\Install\applications\Creative\SBA2_EAX4DRV_031031.exe" /f

EXIT
Aaron
Show us the batch files executed from [GuiRunOnce] in CODE tags
mediatx
QUOTE (AaronXP @ Mar 18 2004, 10:59 AM)
Show us the batch files executed from [GuiRunOnce] in CODE tags

DONE -- above post is modified




Google Internet Forums Unattended CD/DVD Guide

This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.