Jump to content

Blub

Member
  • Posts

    57
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Switzerland

Everything posted by Blub

  1. Easiest way imo is using Nlite (check out Nlite forum). Even if you don't do anything else you could select "provide default" as unattended option.
  2. Hey there, Just successfully integrated nVRaid in my winxp home ed. using your method (s. quote). I copied the additional file into the sataraid folder and just selected it for integration in nLite 1.0 RC6 Tx!
  3. Looks like the A64 Newcastle is the best bet indeed. At least with my K8V-X motherboard ... I checked the Asus website http://www.asus.com to make sure there is not simply a bios update which would allow locking the AGP/PCI frequency. I found this: So, not much overclocking potential with this board. Thanks guys for for your info.
  4. Thanks for the info first fo all. Motherbopard is an ASUS K8V-X. From the top of my head it is not great for overclocking because the BIOS doesn't allow the AGP and PCI clock to be locked. But I'd have to check to confirm this. To be honest I didn't really think about whether I eante to overclock it or not. Potentially I could build some reasonably powerful air cooling into the very bulk standard pc case the motherbopard is currently in, as I'd have parts for that as well. By the way, am I correct in assuming that without the ability to lock the AGP etc, the potential for overclocking is not very good anyway? Maybe I should check the Asus website for latest bios to make sure this is the case.
  5. hey guys, I have this mobo (and everything else except mem and cpu) just sitting around. It's a 754, so I'd need an AMD to make it work. I was looking at what one could get nowadays and found these: Sempron 3400+: 2GHz, 256kb L2 Cache, FSB 333MHz, Palermo Athlon 64 3200+: 2.2GHz, 512kB L2 Cache, FSB 200MHz, Newcastle, HyperTransport-Bus 800MHz This got me wondering: does anyone know which one is actually faster ? Oh, actually the Sempron is slightly cheaper as well.
  6. I considered doing the same thing, but never tried it. Does anyone happen to know if you can install from a custom dvd and play the game after inserting the original cd's? Would still be more convenient ...
  7. Are cmdlines.txt / RunOnceEx.cmd in the $OEM$ folder? and:
  8. Well, just to let anyone looking at this know ... The problem is solved if I install Daemon Tools later on. No idea why though. Current working RunOnceEx: cmdow @ /HID @echo off SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Installing Applications" /f REG ADD %KEY%\010 /VE /D "Microsoft .NET Framework" /f REG ADD %KEY%\010 /V 1 /D "%systemdrive%\Install\DotNet.cmd" /f REG ADD %KEY%\020 /VE /D "Adobe Reader" /f REG ADD %KEY%\020 /V 1 /D "%systemdrive%\Install\AcrobatRdr70.cmd" /f REG ADD %KEY%\030 /VE /D "Nero Burning ROM" /f REG ADD %KEY%\030 /V 1 /D "%systemdrive%\Install\Nero.cmd" /f REG ADD %KEY%\040 /VE /D "Daemon Tools" /f REG ADD %KEY%\040 /V 1 /D "%systemdrive%\Install\Daemon.cmd" /f REG ADD %KEY%\050 /VE /D "Windows Media Player" /f REG ADD %KEY%\050 /V 1 /D "%systemdrive%\Install\WMP.cmd" /f REG ADD %KEY%\060 /VE /D "Mozilla Firefox" /f REG ADD %KEY%\060 /V 1 /D "%systemdrive%\Install\Firefox.cmd" /f REG ADD %KEY%\070 /VE /D "Java Runtime Enviroment" /f REG ADD %KEY%\070 /V 1 /D "%systemdrive%\Install\J2RE.cmd" REG ADD %KEY%\080 /VE /D "MSN Messenger" /f REG ADD %KEY%\080 /V 1 /D "%systemdrive%\Install\MSN.cmd" /f REG ADD %KEY%\888 /VE /D "Importing Registry Tweaks" /f REG ADD %KEY%\888 /V 1 /D "%systemdrive%\Install\RegTweaks.cmd" /f REG ADD %KEY%\999 /VE /D "Cleaning Up" /f REG ADD %KEY%\999 /V 1 /D "%systemdrive%\Install\CleanUp.cmd" /f EXIT Everything else as before. cheers
  9. hey guys, Great forum. I'm new here, and found it extremely useful. I've got this little problem, but it's driving me nuts. For my unattended XP (HE), I am using RunOnceEx which calls command scripts to install some apps automatically. Everything works just fine except Daemon tools. But if I leave/copy the install folder on C: and run the Daemon .cmd manually everything works tip top. Somehow it fails if I do an unattended install though... Here's my RunOnceEx command script (which is in the $OEM$ folder): cmdow @ /HID @echo off SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Installing Applications" /f REG ADD %KEY%\010 /VE /D "Adobe Reader 7" /f REG ADD %KEY%\010 /V 1 /D "%systemdrive%\Install\AcrobatRdr70.cmd" /f REG ADD %KEY%\020 /VE /D "Daemon Tools" /f REG ADD %KEY%\020 /V 1 /D "%systemdrive%\Install\Daemon.cmd" /f REG ADD %KEY%\030 /VE /D "Nero Burning ROM 6" /f REG ADD %KEY%\030 /V 1 /D "%systemdrive%\Install\Nero.cmd" /f REG ADD %KEY%\040 /VE /D "Windows Media Player 10" /f REG ADD %KEY%\040 /V 1 /D "%systemdrive%\Install\WMP.cmd" /f REG ADD %KEY%\050 /VE /D "Mozilla Firefox 1.03" /f REG ADD %KEY%\050 /V 1 /D "%systemdrive%\Install\Firefox.cmd" /f REG ADD %KEY%\060 /VE /D "Java 2 Runtime Enviroment" /f REG ADD %KEY%\060 /V 1 /D "%systemdrive%\Install\J2RE.cmd" REG ADD %KEY%\070 /VE /D "Microsoft .NET Framework 1.1 Service Pack 1" /f REG ADD %KEY%\070 /V 1 /D "%systemdrive%\Install\DotNet.cmd" /f REG ADD %KEY%\080 /VE /D "MSN Messenger 7.0" /f REG ADD %KEY%\080 /V 1 /D "%systemdrive%\Install\MSN.cmd" /f REG ADD %KEY%\888 /VE /D "Importing Registry Tweaks" /f REG ADD %KEY%\888 /V 1 /D "%systemdrive%\Install\RegTweaks.cmd" /f REG ADD %KEY%\999 /VE /D "Cleaning Up" /f REG ADD %KEY%\999 /V 1 /D "%systemdrive%\Install\CleanUp.cmd" /f EXIT And here's the command script for Daemon tools (Daemon.cmd) which resides in the $OEM$\$1\$Install\ Daemon\folder: cmdow @ /HID @echo off START /WAIT %systemdrive%\Install\Daemon\daemon347.msi /passive /qn /norestart EXIT I have the feeling I'm missing something really silly. Hope anyone can help cheers
×
×
  • Create New...