Jump to content

Dirago

Member
  • Posts

    8
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About Dirago

Dirago's Achievements

0

Reputation

  1. Got it, I just used InstallRite to make the install package and then added the exe to the applications folder and then added to the batch file and I am off and running.
  2. Well, as you all can probably guess I am trying to add MapPoint 2004 to my unatended XP install, my problem is this: MapPoint is a 2 CD set, so when installing it asks for CD 2, how do I set it up using RunOnceEX to install unattended? This is my first Unattended XP DVD (as it is 1.8 gig currently) and I have everything else set up and working fine, just can't seem to figure out how to do MapPoint. I have searched MSFN and didn't see anything close to what I want to do (it's possible I missed it as I am brain fried). So can anyone tell me what to do or at least point me in the right direction? This noob will be greatly appreciated.
  3. Thanks Bonkers for the help. I am not putting any dashes in my serial but, from what you have posted (abcpy.ini) I see a change I need to make. I will give the switches you have suggested a try. Thanks again.
  4. First off my appologizes on the post. Secondly, I am using VirturalPC to test my image hence my first post with the code for 5 apps that I am having trouble with. I am trying Aaron suggestions now and hopefuly that works. The trouble I am having is as follows: Adobe Acrobat Pro, loads silently with no problems but, when I start the app after install I get this error: "No Valid Acrobat Serial Number Found. Acrobat will now quit" I do have the correct serial number in so I am guessing that there is something wrong with the Abcpy.ini file that's why the post on that. Diskeeper Pro 8 Loads but, it prompts for action ie: click next to install etc, just as if I were installing it normally from windows. Quicken Deluxe 2003 does the same thing as Diskeeper Pro 8. BPS SpyWare and LimeWire Pro, when Windows gets to them to install them it just opens the folder up with the exe in it and that's it. So it dosen't install them. I am guessing I have the wrong switch for them also. Again my appologies for not following the rules, I didn't mean to and yes I should have read them......
  5. I forgot that I was able to get Adobe Acrobat Pro 6.0 to install (silently) but, when I start up adobe I get: "No Valid Acrobat Serial Number Found. Acrobat will now quit." (I removed the Serial Number for security purposes) Here is the Abcpy.ini file: ;*************************************************************** ;Adobe Installer External Configuration File: Abcpy.ini ;*************************************************************** ;*************************************************************** ;Main Section ;The (Product) key is a required key ;*************************************************************** [MAIN] Product=Adobe® Acrobat® 6.0 AbcpyVersion=2.0 ;*************************************************************** ;OEM Installation Options ;*************************************************************** [OEM Install] ISX_SERIALNUMBER=XXXXXXXXXXXXXXXXXXXXXXXX USERNAME=Mark COMPANYNAME=Home INSTALLDIR= ALLOW_LOCKDOWN_BROWSE=YES ALLOW_LOCKDOWN_MEDIA=YES ARPHELPLINK= ARPHELPTELEPHONE= ARPNOMODIFY= ;ARPNOMODIFY=YES disables the "Change" button in Add/Remove Programs ;*************************************************************** ;Launches - Set for any other applications you wish to launch ; 1. Define 1 or more custom section names -> MyLaunch ; 2. Enable your custom section(s) -> MyLaunch=YES ; 3. Set up your custom section: ; [MyLaunch] ; TYPE= (Can be EXE or OTHER - default is OTHER) ; PROGRAM= (can be null type is EXE and if included in commandline) ; COMMANDLINE= (add program arguments here) ; CHANGEDIR= (add working dir here) ; WAIT=YES (Can be YES or NO if type is EXE) ; PLATFORM= (Any delimited combination of the following: ; WIN_XP ; WIN_2K ; WIN_ME ; WIN_98 ; WIN_NT4 ; (delimiters: any printable char) ;*************************************************************** ;--Launch Objects [Launches] MyLaunch1=NO [MyLaunch1] TYPE= PROGRAM= COMMANDLINE= CHANGEDIR= WAIT= PLATFORM=
  6. Ok, here is the whole RunOnce Command: 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\prepare.cmd" /f REG ADD %KEY%\010 /VE /D "MDAC 2.7 SP1 Hotfix" /f REG ADD %KEY%\010 /V 1 /D "%systemdrive%\install\hotfixes\Q832483.EXE /C:\"dahotfix.exe /q /n\" /q" /f REG ADD %KEY%\015 /VE /D "Q817787 for Windows Media Player 8" /f REG ADD %KEY%\015 /V 1 /D "%systemdrive%\install\hotfixes\Q817787.EXE /Q:A /R:N" /f REG ADD %KEY%\020 /VE /D "Q817778 Advanced Networking Pack" /f REG ADD %KEY%\020 /V 1 /D "%systemdrive%\install\hotfixes\Q817778.exe /Q /N /Z" /f REG ADD %KEY%\025 /VE /D "Q835732 Security Update" /f REG ADD %KEY%\025 /V 1 /D "%systemdrive%\install\hotfixes\Q835732.exe /quiet /n /norestart /o" /f REG ADD %KEY%\030 /VE /D "Q826939 SP1 Security Rollup" /f REG ADD %KEY%\030 /V 1 /D "%systemdrive%\install\hotfixes\Q826939.exe /quiet /n /norestart /o" /f REG ADD %KEY%\100 /VE /D "WinRAR 3.00" /f REG ADD %KEY%\100 /V 1 /D "%systemdrive%\install\Applications\Winrar\wrar300.exe /silent" /f REG ADD %KEY%\105 /VE /D "Acrobat Pro 6.0" /f REG ADD %KEY%\105 /V 1 /D "%systemdrive%\install\Applications\Acrobat\AcroPro.msi /QR REG ADD %KEY%\107 /VE /D "Office 2003 Pro" /f REG ADD %KEY%\107 /V 1 /D "%systemdrive%\install\Applications\Office2003\Pro11.msi /QB REG ADD %KEY%\110 /VE /D "**** NFO Viewer" /f REG ADD %KEY%\110 /V 1 /D "%systemdrive%\install\Applications\****\****.msi /qn" /f REG ADD %KEY%\112 /VE /D "Diskeeper 8" /f REG ADD %KEY%\112 /V 1 /D "%systemdrive%\install\Applications\DK8\DKPro.exe REG ADD %KEY%\115 /VE /D "Daemon Tools" /f REG ADD %KEY%\115 /V 1 /D "%systemdrive%\install\Applications\d-tools\dtools.msi /qb REBOOT=Suppress" /f REG ADD %KEY%\120 /VE /D "FFDShow" /f REG ADD %KEY%\120 /V 1 /D "%systemdrive%\install\Applications\ffdshow\ffdshow.exe /S" /f REG ADD %KEY%\125 /VE /D "Quicken Deluxe 2003" /f REG ADD %KEY%\125 /V 1 /D "%systemdrive%\install\Applications\Quicken2003\Quicken2003.exe REG ADD %KEY%\130 /VE /D "Flash Player" /f REG ADD %KEY%\130 /V 1 /D "%systemdrive%\install\Applications\flash\flashplayer7installer.exe /s" /f REG ADD %KEY%\135 /VE /D "Shockwave" /f REG ADD %KEY%\135 /V 1 /D "%systemdrive%\install\Applications\flash\Shockwave_Installer_Full.exe /s" /f REG ADD %KEY%\140 /VE /D "Flashget" /f REG ADD %KEY%\140 /V 1 /D "REGEDIT /S %systemdrive%\install\Applications\flashget\register.reg" /f REG ADD %KEY%\140 /V 2 /D "%systemdrive%\install\Applications\flashget\fgf160a.exe /s" /f REG ADD %KEY%\145 /VE /D "hkSFV" /f REG ADD %KEY%\145 /V 1 /D "%systemdrive%\install\Applications\hksfv\hksfvsetup.exe /S" /f REG ADD %KEY%\145 /V 2 /D "taskkill /IM explorer.exe" /f REG ADD %KEY%\150 /VE /D "Sun Java VM 1.5.0" /f REG ADD %KEY%\150 /V 1 /D "%systemdrive%\install\Applications\Java\j2re-1_5_0-beta-windows-i586.exe /s /v\"/qn ADDLOCAL=jrecore IEXPLORER=1 MOZILLA=1\"" /f REG ADD %KEY%\155 /VE /D "Nero Burning ROM v6.3.0.3" /f REG ADD %KEY%\155 /V 1 /D "%systemdrive%\install\Applications\Nero\nero6303.exe /silent /noreboot /no_ui /sn=1A23-0033-6030-1243-5611-1943 /write_sn" /f REG ADD %KEY%\160 /VE /D "OggDS" /f REG ADD %KEY%\160 /V 1 /D "%systemdrive%\install\Applications\oggds\oggds0995.exe /S" /f REG ADD %KEY%\165 /VE /D "BPS" /f REG ADD %KEY%\165 /V 1 /D "%systemdrive%\install\Applications\BPS Spyware\bpssr82-FV.exe /s" /f REG ADD %KEY%\170/VE /D "Textpad" /f REG ADD %KEY%\170 /V 1 /D "%systemdrive%\install\Applications\textpad\textpad.msi /qb REBOOT=Suppress" /f REG ADD %KEY%\175 /VE /D "LimeWire" /f REG ADD %KEY%\175 /V 1 /D "%systemdrive%\install\Applications\LimeWire\LimeWireWin.exe /s" /f REG ADD %KEY%\180 /VE /D "TweakUI 2.10 Powertoy" /f REG ADD %KEY%\180 /V 1 /D "%systemdrive%\install\PowerToys\TweakUI.msi /qb" /f REG ADD %KEY%\185 /VE /D "Open CMD Window Here Powertoy" /f REG ADD %KEY%\185 /V 1 /D "%systemdrive%\install\PowerToys\cmdinstall.exe /q" /f REG ADD %KEY%\190 /VE /D "Activating Windows XP Firewall" /f REG ADD %KEY%\190 /V 1 /D "%systemdrive%\Windows\System32\oemfwall.exe" /f REG ADD %KEY%\195 /VE /D "Cleaning Up and Rebooting" /f REG ADD %KEY%\195 /V 1 /D "%systemdrive%\install\cleanup.cmd" /f EXIT Aaron: I did test them (sort of) what I am getting is what is coded in red is prompting me for action. What is coded in Blue is not installing at all, the window with the exe pops up but, dosen't install.
  7. I will admit that I am new to this and I have read (and downloaded) the tutorials. I am able to get alot (around 24 apps) to install unattended but, I am having problems with these five. I am using the RunOnceEX to install all these but, like I said the following I am having trouble with. Can anyone tell me what I have done wrong? REG ADD %KEY%\105 /VE /D "Acrobat Pro 6.0" /f REG ADD %KEY%\105 /V 1 /D "%systemdrive%\install\Applications\Acrobat\AcroPro.msi /QR REG ADD %KEY%\112 /VE /D "Diskeeper 8" /f REG ADD %KEY%\112 /V 1 /D "%systemdrive%\install\Applications\DK8\DKPro.exe /s" /f REG ADD %KEY%\125 /VE /D "Quicken Deluxe 2003" /f REG ADD %KEY%\125 /V 1 /D "%systemdrive%\install\Applications\Quicken2003\Quicken2003.exe /s" /f REG ADD %KEY%\165 /VE /D "BPS" /f REG ADD %KEY%\165 /V 1 /D "%systemdrive%\install\Applications\BPS Spyware\bpssr82-FV.exe /s" /f REG ADD %KEY%\175 /VE /D "LimeWire Pro" /f REG ADD %KEY%\175 /V 1 /D "%systemdrive%\install\Applications\LimeWire\LimeWireWin.exe /s" /f Mods: Please move if I am in the wrong place. Thanks
  8. Hi all. This is my first time doing an Unattended XP CD so go easy on me....lol My question is this: I want to add Adobe Acrobat Pro 6.0 to my install and understand how to set it up but, I don't understand how to enter in the serial number. Maybe I am missing something (and probably am) but, I am doing this under RunOnceEx is this right? or should I be setting it up under something else? Also, what would the cmd line look like? Please help... Thanks
×
×
  • Create New...