Jump to content

archmonde11

Member
  • Posts

    3
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Vietnam

Everything posted by archmonde11

  1. ........................... REG ADD %KEY%\0080 /VE /D "Mozilla Thunderbird 3.1.5" /f REG ADD %KEY%\0080 /V 1 /D "%CDROM%\Software\MTHUN\ThunderbirdSetup3.1.5.exe -ms -ira" /f REG ADD %KEY%\0090 /VE /D "Reboot" /f REG ADD %KEY%\0090 /V 1 /D "%CDROM%\Software\Restart.cmd" /f start /wait rundll32 iernonce.dll,RunOnceExProcess REG ADD %KEY%\0095 /VE /D "FOUR WINDOWS Themes Installer" /f REG ADD %KEY%\0095 /V 01 /D "%CDROM%\Software\WinT\FFXI_Theme_Installer.exe /s /v"/qb" /f REG ADD %KEY%\0095 /V 02 /D "%CDROM%\Software\WinT\Nile_Theme_EN.msi /qb" /f REG ADD %KEY%\0095 /V 03 /D "%CDROM%\Software\WinT\Ontario_theme_eng.msi /qb" /f REG ADD %KEY%\0095 /V 04 /D "%CDROM%\Software\WinT\Windows_Theme_English_Nunavut.msi /qb" /f .......................... I've just wandering around the forum finding way to customize my Visual Effect and No Sounds Scheme and finally I found this thread. Thanks you for the "start /wait rundll32 iernonce.dll,RunOnceExProcess" command.
  2. Thanks all of you for your replies. Finally I have this others.cmd. It worked like charm! This forum is so GREAT! @ECHO OFF & SETLOCAL ENABLEEXTENSIONS TITLE Windows XP SP3 - Unattended Installation (SET CDROM=%~d0) CLS ECHO= ECHO=Installing Unikey 4.0 ECHO=Please wait... START /WAIT %CDROM%\Apps\UKEY4.0\Unikey4.0.exe /s ECHO= ECHO=Installing WinRAR 3.2 ECHO=Please wait... START /WAIT %CDROM%\Apps\winrar3.2\winrar3.2.exe /s ECHO= ECHO=Installing Foxit Reader 3.0 ECHO=Please wait... START "" /WAIT "%CDROM%\Apps\Foxit Reader3\FoxitRead3.exe" /s ECHO= ECHO=Installing Copy File name 3.1 ECHO=Please wait... START /WAIT %CDROM%\Apps\CopyFilename31\copyfilenames31.exe /s ECHO= ECHO=Restarting the PC in 30 seconds... SHUTDOWN.EXE -r -f -t 30 -c "Windows XP will now restart in 1/2 minute" EndLocal EXIT
  3. I'm trying to silently install some InstallShield based programs. I use the following *.cmd file executed by runoneex. The Runoneex worked fine but the error arose when executing Others.cmd. A window appear notifying that Windows can not find the path for those programs. To clear this out, I Iogged on window XP, run the same *.exe which was used in Others.cmd by Run command with and without /s switch. The fact is that If I execute the *.exe with the /s, the same window notifying missing path appeared like the beginning. Anyone encountered the same problem? RUNONEEX ... REG ADD %KEY%\0004 /VE /D "Other Programs" /f REG ADD %KEY%\0004 /V 0001 /D "%CDROM%\Apps\Others.cmd" /f Ohers.cmd CLS @echo off TITLE Windows XP SP3 - Unattended Installation ECHO. ECHO Installing Unikey 4.0 ECHO Please wait... start /wait %CDROM%\Apps\UKEY4.0\Unikey4.0.exe /s ECHO. ECHO Installing WinRAR 3.2 ECHO Please wait... start /wait %CDROM%\Apps\winrar3.2\winrar3.2.exe /s ECHO. ECHO Installing Foxit Reader 3.0 ECHO Please wait... start /wait %CDROM%\Apps\Foxit Reader3\FoxitRead3.exe /s ECHO. ECHO Installing Copy File name 3.1 ECHO Please wait... start /wait %CDROM%\Apps\CopyFilename31\copyfilenames31.exe /s ECHO. ECHO Restarting the PC in 30 seconds... shutdown.exe -r -f -t 30 -c "Windows XP will now restart in 1/2 minute" EXIT
×
×
  • Create New...