Jump to content

rendrag

Member
  • Posts

    694
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by rendrag

  1. REG ADD %KEY%\010 /VE /D "Daemon Tools 3.47" /f REG ADD %KEY%\010 /V 1 /D "%I%\daemon\daemon.msi /qb-! /norestart" /f REG ADD %KEY%\010 /V 2 /D "%I%\daemon\copy.cmd" /f REG ADD %KEY%\010 /V 3 /D "%I%\daemon\awxinstall.cmd" /f REG ADD %KEY%\015 /VE /D "Diskkeeper Profressional Edition v9.0.509" /f REG ADD %KEY%\015 /V 1 /D "%I%\diskkeeper\diskkeeper.exe" /f REG ADD %KEY%\020 /VE /D "Firefox 1.0" /f REG ADD %KEY%\020 /V 1 /D "%I%\firefox\firefox.msi /qb" /f so daemon is a MSI, diskkeeper is a MSI called out of an SFX, and both install and run correctly as I have tested those. The diskkeeper pro I have is an EXE that extracts a MSI to the temp directory, so I just copied the MSI out REG ADD %KEY%\062 /VE /D "Shockwave Installer 10.1" /f REG ADD %KEY%\062 /V 1 /D "%I%\shockwave\shockwave.msi /qb" /f REG ADD %KEY%\065 /VE /D "Symantec Antivirus Corporate 9.0" /f REG ADD %KEY%\065 /V 1 /D "%I%\sav\sav.exe" /f REG ADD %KEY%\067 /VE /D "Thunderbird 1.0" /f REG ADD %KEY%\067 /V 1 /D "%I%\thunderbird\thunderbird.exe" /f shockwave, obvious MSI, antivirus is a MSI called from a SFX archive and that installs correctly. So I know MSIs have installed back to back before, even out of SFXs, so I'm puzzled. In any event... @ totoymola: the thunderbird version is 1.0. I just noticed your question about that @ p388l3s: I totally forgot about CD-RWs haha... I'll have to start using those. Actually, it does make more sense to install TB and FF at the beginning... the java plugin for mozilla (i'm not even sure it would work with FF, I haven't had a chance to test that yet) wouldn't get installed if the browser isn't installed yet. I'll move them to the top and we'll see what happens. @ prathapml: That's cool stuff... def will come in handy Thanks for all the help so far all... I'll post results later tonight as I'm burning a new image now.
  2. can't wait... should be insane... PCGamer has a 10 page spread about it in this months issue
  3. what size is your powersupply? I'm sure that might be fritzing, and when it does, it can cause all sorts of hardware problem, not limited to frying components
  4. i'm a big fan of the antec super lanboy case http://www.antec.com/us/productDetails.php?ProdID=15001 i'll try to take some pics when I get home tonight
  5. the easiest way you could accomplish this. 1. create a cmd file (i.e. startmenu.cmd) consisting of MOVE "%UserProfile%\Start Menu\Programs\Lavasoft Ad-Aware SE Professional\Ad-Aware SE Professional.lnk" "%AllUsersProfile%\Start Menu\Programs\System\Ad-Aware Professional.lnk" RD "%UserProfile%\Start Menu\Programs\Lavasoft Ad-Aware SE Professional" /s /q and add that to your runonce, for example here: REG ADD %KEY%\001 /VE /D "Ad-Aware Pro" /f REG ADD %KEY%\001 /V 1 /D "C:\Install\aawsepro.exe /S" /f REG ADD %KEY%\001 /V 2 /D "taskkill /IM Adaware.exe /F" /f REG ADD %KEY%\001 /V 3 /D "taskkill /IM hh.exe /F" /f REG ADD %KEY%\001 /V 4 /D "taskkill /IM Ad-Aware.exe /F" /f REG ADD %KEY%\001 /V 5 /D "startmenu.cmd" /f
  6. how are you attempting to install windows? are you booting from the CD, or are you just inserting it in your cd-rom drive while in windows?
  7. ad-aware only installs in the current user's profile, it does not install to all users. You could make folders in your $1 directory and rather than copy the programs and shortcuts etc.. over, you could have them in the %allusersprofile% directory already $1 > Documents and Settings > All Users > Start Menu > (copy over ad-aware installation folder to here) hope that makes sense
  8. i don't really care too much about total removal... i don't plan on uninstalling firefox anytime soon anyway. The only way I would remove it is if I had to do a clean install of windows, so it wouldn't matter at that point. I'll mess around with it a little more and see what I come up with. I hate having to burn CDs to test this... stinks not having something like vmware or virtual PC... oh well, blanks don't cost that much anyway
  9. if I doubleclick on the MSI for firefox within windows, it just runs like any attended install would. It asks what type of install etc.. and it installs correctly. The thunderbird.exe is just an SFX, and the comment is correct. When I extract that and run, it also runs as an attended installation. I just can't figure out why it would say an install is currently running, when nothing is. I guess my next step would be to either use the different methods that prathapml suggested, or maybe move around the firefox and thunderbird files, maybe put them as the last thing to install. Any other thoughts or ideas?
  10. As promised, here's my runonce code: I removed some stuff like the CDROM detection, plus the cleanup stuff at the end. SET I=%cdrom%\Install SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Setting up Programs" /f REG ADD %KEY%\000 /VE /D "Acrobat Reader 7" /f REG ADD %KEY%\000 /V 1 /D "%I%\ar7\acroread7.exe" /f REG ADD %KEY%\005 /VE /D "Ad-Aware Pro SE 1.05" /f REG ADD %KEY%\005 /V 1 /D "%I%\lavasoft\aawsepro105.exe /S" /f REG ADD %KEY%\005 /V 2 /D "%I%\lavasoft\pskill hh.exe" /f REG ADD %KEY%\005 /V 3 /D "%I%\lavasoft\pskill Ad-Aware.exe" /f REG ADD %KEY%\010 /VE /D "Daemon Tools 3.47" /f REG ADD %KEY%\010 /V 1 /D "%I%\daemon\daemon.msi /qb-! /norestart" /f REG ADD %KEY%\010 /V 2 /D "%I%\daemon\copy.cmd" /f REG ADD %KEY%\010 /V 3 /D "%I%\daemon\awxinstall.cmd" /f REG ADD %KEY%\015 /VE /D "Diskkeeper Profressional Edition v9.0.509" /f REG ADD %KEY%\015 /V 1 /D "%I%\diskkeeper\diskkeeper.exe" /f REG ADD %KEY%\020 /VE /D "Firefox 1.0" /f REG ADD %KEY%\020 /V 1 /D "%I%\firefox\firefox.msi /qb" /f REG ADD %KEY%\025 /VE /D "Gaim 1.1.1" /f REG ADD %KEY%\025 /V 1 /D "%I%\gaim\gaim.exe /L=1033 /S" /f REG ADD %KEY%\027 /VE /D "Java Virtual Machine 1.4.2_06" /f REG ADD %KEY%\027 /V 1 /D "%I%\java\java14206.exe /s /v/qn addlocal=jrecore iexplorer=1 mozilla=1 reboot=supress webstarticon=0" /f REG ADD %KEY%\030 /VE /D ".NET Framework v1.1 SP1" /f REG ADD %KEY%\030 /V 1 /D "%I%\dotnet\netfxsp1.exe" /f REG ADD %KEY%\040 /VE /D "Nero Burning ROM v6.6.0.1" /f REG ADD %KEY%\040 /V 1 /D "%I%\nero\nero6601s.exe" /f REG ADD %KEY%\045 /VE /D "Office 2003 Pro - Excel, PowerPoint and Word" /f REG ADD %KEY%\045 /V 1 /D "%I%\office2003\office2k3.exe" /f REG ADD %KEY%\050 /VE /D "PowerDVD 6" /f REG ADD %KEY%\050 /V 1 /D "%I%\powerdvd6\powerdvd6.exe" /f REG ADD %KEY%\055 /VE /D "Powertoys for Windows XP v2.10" /f REG ADD %KEY%\055 /V 1 /D "%I%\powertoys\powertoys.msi /qb" /f REG ADD %KEY%\060 /VE /D "QuickTime Viewer" /f REG ADD %KEY%\060 /V 1 /D "%I%\quicktime\quicktimealt139.exe /VERYSILENT /SP-" /f REG ADD %KEY%\062 /VE /D "Shockwave Installer 10.1" /f REG ADD %KEY%\062 /V 1 /D "%I%\shockwave\shockwave.msi /qb" /f REG ADD %KEY%\065 /VE /D "Symantec Antivirus Corporate 9.0" /f REG ADD %KEY%\065 /V 1 /D "%I%\sav\sav.exe" /f REG ADD %KEY%\067 /VE /D "Thunderbird 1.0" /f REG ADD %KEY%\067 /V 1 /D "%I%\thunderbird\thunderbird.exe" /f REG ADD %KEY%\070 /VE /D "UltraISO 7.2.5.923" /f REG ADD %KEY%\070 /V 1 /D "%I%\ultraiso\ultraisosetup.exe /VERYSILENT /SP-" /f REG ADD %KEY%\070 /V 2 /D "%I%\ultraiso\uiso.cmd" /f REG ADD %KEY%\075 /VE /D "Winamp 5.08 and skins" /f REG ADD %KEY%\075 /V 1 /D "%I%\winamp\winamp.msi ini=%I%\winamp\setup.ini /qb" /f REG ADD %KEY%\075 /V 2 /D "%I%\winamp\copy.cmd" /f REG ADD %KEY%\080 /VE /D "WinRAR 3.4.1" /f REG ADD %KEY%\080 /V 1 /D "%I%\winrar\winrar341.exe /s" /f REG ADD %KEY%\080 /V 2 /D "%I%\winrar\copy.cmd" /f REG ADD %KEY%\085 /VE /D "Zone Alarm Pro 5.1.033" /f REG ADD %KEY%\085 /V 1 /D "%I%\zonealarm\zalarm.exe /s /i /noreboot /lickey XXXXXXXXXXXXXXXXX" /f REG ADD %KEY%\085 /V 2 /D "%I%\lavasoft\pskill za.exe" /f EXIT I have to be blind because I can't tell where I'm screwing this up. Thanks for the help
  11. i'll give those a shot as well if I can't get this working.... I was so close to having a perfect uA cd... oh well, I'll just keep on plugging
  12. I have been busy perfecting my uA CD , so that's why i've been away for a little bit. I'm at work now. I'll post my runonce when I get home.
  13. so I'm using the silent thunderbird EXE found here and the silent firefox MSI totoymola made here in my runonce, both come up with an error saying that an install is already running, please wait and run after it has finished. I checked and rechecked my numbering scheme to make sure I wasn't calling 2 MSI's simultaneously and I'm not. If I run the files off the CD while in Windows, I don't have any problems... I have other MSI's that run back to back in the CD, and I only get the error when firefox and thunderbird are attempting to be installed. Any thoughts?
  14. I'd have to agree... I never had many problems. I assume most problems came about because people installed those fun programs by gator, and other wonderful spyware programs
  15. that's really strange... i've never had it ask me for CD2. Are you installing parts of office that aren't on CD1?
  16. i knew this wasn't gonna a easy fix, but I was just seeing if you guys had suggestions for things I hadn't thought of yet. I'll have him run a memcheck, and check his drivers as well
  17. that's right... i completely forgot about event viewer I know he doesn't have a space heater pointing at his computer I'll also have him check the killswitch. I think the lowest I've ever any kill switch set to is 50'C, so I'll have him check that. I've never heard of bad ram causing a boot disk failure, but I guess there's a first for everything Thanks for the help
  18. I'm pretty sure he's using the 80 pin cable, but I'll doublecheck that. using AMD proc, the system fan speed is thermally controlled by the power supply, so I'll see about hooking it to a regular molex connector. Strange is that the computer has run for about 2.5 years without a hitch, and now it's running into problems. Thanks for the help, and if anyone wants to chime in, go for it.
  19. office shrink should def not be mach specific. I'm using and have installed on multiple systems without a hitch... One thing you could try is to take the "-" out of the switch .... transforms="silent.mst" /qb- That switch hides errors. If you remove it, any errors in the installation should pop up.
  20. This was discussed some time ago... found it in a quick search. http://www.msfn.org/board/index.php?showtopic=28635&hl=
  21. A buddy of mine has a computer which is spontaneously crashing on him every so often. at first I thought it was temperatures which caused an auto shutdown, but now i'm not so sure. Now it's just shutting off every 10-20 minutes, and sometimes, when he reboots, he gets the following screen: CPU Temp: 47c/116f System Fan Speed: 1622 RPM 3.3(v): 3.31v +12 (v): 12.16v -5(v): -4.99v CPU Fan Speed: 2812 RPM CPU voltage: 1.74v +5(v): 4.94 -12(v):-12.36 Verifying DMI Pool Data..... Boot from Atapi CD-Rom..... Boot from Atapi CD-Rom..... DISK BOOT FAILURE; INSERT SYSTEM DISK AND PRESS ENTER I know the CPU temp is a tad high, but it is def not high enough to cause this crash... my initial thought is that the hard drive is bad, however if he reboots a couple times, he gets past the diskboot failure and it loads windows OK. The strange thing is that he's left it running all weekend and it's never crashed, but if he uses it, it will crash hard on him. What y'all think? I've suggested he back up his data to be safe, but any headway into what could be causing these reboots would be sweet.
  22. hello durex... welcome to unattended anonymous. I am also a member.
  23. astalavista meant bashrat's driver packs... it's basically a collection of drivers that is referenced by windows during setup for multiple pieces of hardware starts here: http://www.btsunattended.net/EN/DriverPacks/index.htm
  24. how are you installing this? is this an silent install? if so, what switches are you using?
×
×
  • Create New...