Jump to content

Bolus123

Member
  • Posts

    29
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Netherlands

Everything posted by Bolus123

  1. Hi, Use this in your runonceex.cmd: @Echo Off IF EXIST D:\CD.txt set CDROM=D: IF EXIST E:\CD.txt set CDROM=E: IF EXIST F:\CD.txt set CDROM=F: IF EXIST G:\CD.txt set CDROM=G: IF EXIST H:\CD.txt set CDROM=H: IF EXIST I:\CD.txt set CDROM=I: IF EXIST J:\CD.txt set CDROM=J: SET PP=%cdrom%\Apps\ SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Installing Programs" /f REG ADD %KEY%/005 /VE /D "Winrar 3.30" /f REG ADD %KEY%/005 /V 1 /D "%PP%winrar\Winrar330.exe /s" /f REG ADD %KEY%/010 /VE /D "NOD32" /f REG ADD %KEY%/010 /V 1 /D "%PP%NOD32\setup.exe /silentmode /f I included 2 examples of programs, just look up the silent switches in the guide. Make sure you have a CD.txt file on your cd (just an empty file). And make a directory on the root of your disk called "Apps" and put there all the applications, or change the code above. Good Luck!
  2. Hello, I've created a succesfull slipstream, but 2 programs don't seem to install. I run them from guirunonce. Nero doesn't seem to install and Java also is not installed. I ran the same batch file like this: C:/nero/nero7590eng.exe /VERYSILENT /Lang="English" /USER="xxx xxxx" /COMPANY="xxxx" /SERIAL="xxxxxxxxxxxxxxxxxxxx" /COMPONENTS="nero_core" /f Then it works just fine, same for the Java. When I run the guirunonce in windows it displays the following error at the lines of java and nero: "error too many command-line parameters" My batch file looks like this: @Echo Off IF EXIST D:\CD.txt set CDROM=D: IF EXIST E:\CD.txt set CDROM=E: IF EXIST F:\CD.txt set CDROM=F: IF EXIST G:\CD.txt set CDROM=G: IF EXIST H:\CD.txt set CDROM=H: IF EXIST I:\CD.txt set CDROM=I: IF EXIST J:\CD.txt set CDROM=J: SET PP=%cdrom%\Apps\ SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Installing Programs" /f REG ADD %KEY /VE /D "Microsoft Office 2003 Professional" /f REG ADD %KEY /V 1 /D "%PP%Microsoft_Office_2003_Professional\setup.exe TRANSFORMS=office11.MST /qb-" /f REG ADD %KEY%05 /VE /D "Winrar 3.30" /f REG ADD %KEY%05 /V 1 /D "%PP%winrar\Winrar330.exe /s" /f REG ADD %KEY%10 /VE /D "Nero Burning Rom 7.5.9.0 Lite" /f REG ADD %KEY%10 /V 1 /D "%PP%nero/nero7590eng.exe /VERYSILENT /Lang="English" /USER="xxx xxxx" /COMPANY="xxxx" /SERIAL="xxxxxxxxxxxxxxxxxxxx" /COMPONENTS="nero_core" /f REG ADD %KEY%15 /VE /D "NOD32" /f REG ADD %KEY%15 /V 1 /D "%PP%NOD32\setup.exe /silentmode /f REG ADD %KEY%20 /VE /D "NOD32 Fix 1.8" /f REG ADD %KEY%20 /V 1 /D "%PP%nodfix\NOD32FiX18.exe /verysilent /norestart REG ADD %KEY%25 /VE /D "Java RE 5 Update 10" /f REG ADD %KEY%25 /V 1 /D "%PP%java\java_1_5_0_10.exe /s /v"/qn ADDLOCAL=jrecore IEXPLORER=1" /f REG ADD %KEY%35 /VE /D "Active Sync 4.2" /f REG ADD %KEY%35 /V 1 /D "%PP%active_sync\Microsoft_ActiveSync_4_2.msi "/qb REBOOT=Suppress" REG ADD %KEY%40 /VE /D "Quickpar" /f REG ADD %KEY%40 /V 1 /D "%PP%quickpar\QuickPar.exe /S REG ADD %KEY%45 /VE /D "FTD 3.7.3" /f REG ADD %KEY%45 /V 1 /D "%PP%ftd\SetupFTDv3_7_3.exe /S REG ADD %KEY%50 /VE /D "Realtek AC97 audio driver" /f REG ADD %KEY%50 /V 1 /D "%PP%realtek/setup.exe -s REG ADD %KEY%55 /VE /D "Nvidia Nforce4 System drivers" /f REG ADD %KEY%55 /V 1 /D "%PP%nvidia/setup.exe -s REG ADD %KEY%99 /VE /D "Cleaning up and applying regtweaks" /f REG ADD %KEY%99 /V 1 /D "%PP%cleanup.cmd" /f EXIT Can anyone help? Thanks!
  3. Hi, Don't know all answers to your questions, mut I might give you some advice. I removed the language bar by using a register string: [-HKEY_CLASSES_ROOT\CLSID\{540D8A8B-1C3F-4E32-8132-530F6A502090}] @="Language bar" "MenuTextPUI"="@%SystemRoot%\\System32\\msutb.dll,-325" [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer] "NoSaveSettings"=dword:00000000 I can recommend you to run a register script, because you can get rid of all the annoying things at once, like the "tour bubble", etc. There are thousands of these kind of scripts. You can run it from runonceex.cmd. I never managed to change the resolution myself, xp just refuses. Maybe because of safety issues, because you could damage your monitor if you set the wrong resolution/refreshrate. Good luck, and if you find a way to get the resolution right, I'm very interested.
  4. Hi there! Is there a way to exclude "windows digital media enhancements" from an unattended install? (Windows MCE). Thanks!
×
×
  • Create New...