Jump to content

Alanoll

Patron
  • Posts

    5,494
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by Alanoll

  1. INvalid key, or you entered it wrong.
  2. Sorry, I've been having girlfriend issues. In the mean time, and may be faster.... find a program called LogonStudio. It's what your original file was made with, and should still work mostly with the SP2 file. There are a few others LogonUI editors around, and you may want to try them out. Sorry I couldn't help further.
  3. @RyanVM Correct me if I'm wrong, but isn't there an INF file included with the hotfix, with the neccesary registry changes?
  4. Not used afterwards. All it does it makes sure the files go to the right "disk". As for multiple entries in DOSNET.INF. Does NOT matter. As long as they're not in any section that has a .XX or whatever in the section name, it will get copied with EVERY other file.
  5. Alanoll

    XPlode Schedule

    @Wraith I dunno.... I'm betting you won't stay on that schedule.... I mean, right in the middle HL2 is SUPPOSED to come (can't be much more, CS:S is already final) and that might through a kink in the plan. lol. I can't wait to hear people ask, "where's XPlode 2.0? He's already working on 3!!" Ah, let them come. I got my fingures ready on the sarcasism.
  6. @RyanVM funny you should mention that..... drop me a PM sometime and I'll see about sending them....
  7. @Astalavista If you read the instructions again, it says... SO you probally selected the ENTIRE suite, instead of just the Nero6 folder.
  8. gotcha, for a second there I thought you might have figured out how to make your own. lol. Cudo's on the pack though. Excellent use of sysoc.inf to have everything install. Or perhaps I should stop there to not give away your secrets....
  9. @Ryanvm where did this one come from? scripten.cat
  10. yup, I got my HL2 Silver Pack for $10. And let's not forget Dod:Source , Half-Life: Source and Counter-Strike: Condition Zero. CZ really made the thing a nice steal. That's still a $50 game. haha. Now if only my Valve Cache actually fit on ONE DVD.
  11. If making copies of a file pushes it over the limit, use CDIMAGE. It will write the file only once to the image, but it will appear in both places as if there are TWO copies.
  12. kinda strange.... by default, /fastdetect and the /noexecute are already included. thought maybe not with optin set. I'm not sure, i removed that whole thing before SP2 was final. Perhaps that's what's causing the spaces. BUt even with the spaces it should still work fine
  13. just because I'm alittle ignant of sysprep.... did you consider either 1. Copying the files over to C:\sysprep\i386 before syspreping or 2. Changing "InstallFilesPath = C:\sysprep\i386" to the proper path? I'm not sure of the second one, but I dunno. I don't know what's in sysprep. But if it's ONLY asking for those, you could try copying them over.
  14. yup. In my BIOS, it lists USB CDROM as an option. If it's there, it will boot. If it's not, if you have a spare CD, burn it and make it bootable. Put it in the DVD rom, set teh Mobo to the closest setting you see, and see if it works.
  15. hope your motherboard suports it?
  16. @esp Change in ALL the IF's, NUM to %NUM% , but just the first one. So instead of IF NUM=1 instead IF %NUM%=1
  17. Yup, see now this is where my argument comes into play. If you always use other's work, you'll never know what you did and how to do it in the future. Read this. http://greenmachine.msfnhosting.com/READING/addraid.htm
  18. YES! The ONLY difference between the VLK and RETAIL version of XP is that the VLK does not need activation. The keys are different so you can't use a RETAIL key on a VLK CD.
  19. you of course of the file in $OEM$\$1\Install on your CD? you also have OEMPreInstall=YES in your winnt.sif file?
  20. @sanjaykumar I'm inclined to believe user error. Probally wrong path or something. The Error is one of two things, one it doesn't find the file. SO wrong path. or two something is wrong with the script. I doubt the second but it could happen. I doubt it because you're the only one gettings it. So I'm inlinded to user error. SInce you're not using /qb or whatever, I dunno. The settings you have LOOK right, besides maybe the extra space. @MtK Nope, sorry. However, if there are suffucient requests for more features, I'll add it. @all Any requets for features? I'm not talking about adding a Skin to the package or anything, just something you want it to do, but doesn't. I'll also look into another way to copy the INI file somewhere. Also, sometimes my browser screws up, and I don't see new posts. So if I don't come and acknowledge your post (if it's an error or request) in a day or so, feel free to PM me.
  21. Ignore prathapml No offense. Seing as you're using CDROM install, ignore him. lol. My question to you is... well, I guess I'm trying to udnerstand to help you better. You're install drivers form this right? REG ADD %KEY%\005 /VE /D "Enhetsdrivere" /f REG ADD %KEY%\005 /V 1 /D "%CDROM%\$OEM$\installer_drivere.cmd" /f Do you want the system to restart prior to executing the Audigy Update? If so.. Then you had it right (the files you posted prior to prathapml suggestion. Did you test this? Bascially, what I was saying is this... 1. At T-12 Setup runs CMDLINES.TXT which in turn Executes RunOnceEX.cmd. This Is where you were to start with. 2. System restarts, and the actual RunOnceEX window popups up and does it's thing. Now, from here you want the system to restart and begin another RunOnceEX? ie RunOnceEX2.cmd? If so.... Here is some basic understanding. RunOnceEX deletes the keys (that's what you're importing in both CMD files) once they have been Executed. So, once Nero is done installing, and it moves to the next entry, the Nero information is No longer in the registry. This is important to note. If you wanted ANOTHER RunOnceEX window to open up upon system restart after the first, you would have to run another CMD file with the keys, again RunOnceEX2.cmd. and add REG ADD %KEY%\075 /VE /D "Forbereder oppdatering av drivere" /f REG ADD %KEY%\075 /V 1 /D "%CDROM%\$OEM$\RunOnceEx2.cmd" /f Just like you've done, so the new ones get imported. It's important to note this should be placed BEFORE your restart file (like you have done). Now the "REG ADD %KEY%\075 " Should start over at 005, and work they're way back up.Which you have done. Now when the system restarts, it should start another RunOnceEX window. EDIT: Just saw prathapml a few minutes before I posted. Both methods have their strengths and weaknesses. Now to pick apart prathapml's. lol. The problem if you follow that exactly.... your cleanup.cmd will execute and the rest of the keys will never be imported. SO as his suggestion goes, you should actually add the actual code in your cleanup.cmd to the RunOnceEX.cmd at the bottom. Now comes a problem, what happens if you're trying to execute the Audigy update that requires the drivers to already be installed. And everything, you need the restart, and prathapml's doesn't allow for that.
  22. OH I came back all on my own... lol Well, here's what I can offer. Send me the files you're trying to use, and I make it for you. I can then send it back, or just go step by step on how to fix it. Sorry the previous thing didn't work. (I'm basically asking for hte files, just because I'm a hands on person. lol) just email it to: alanollv@gmail.com and then PM so I know to check it. lol.
  23. 0100110101100001011011100010110000100000010010010010000001110010011001010110000101101100011011000111 1001001000000111001101110101011000110110101100100000011000010111010000100000010000110101001100100000 0111001001101001011001110110100001110100001000000110111001101111011101110010111000100000010000100111 0101011101000010000001001001001000000110011101110101011001010111001101110011001000000110000101101100 0110110000100000011101000110100001100101001000000110111001101111011011110110001001110011001000000110 0001011100100110010100100000011011110110111000100000010000110101001100111010010100110010000001100001 0111001100100000010010010010000001110011011011110110110101100101011101000110100101101101011001010111 0011001000000110101101101001011011000110110000100000011000010010000001100110011001010111011100100000 0110111101101110001000000111010001101000011000010111010000101110001000000110110001101111011011000010 1110001000000100011101101111011101000111010001100001001000000110011101100101011101000010000001100010 0110010101110100011101000110010101110010001011000010000001000111011011110111010001110100011000010010 0000011001110110010101110100001000000110001001100101011101000111010001100101011100100010111000100000 0100100100100111011011010010000001101101011011110111001001100101001000000110111101100110001000000110 0001001000000100100001100001011011000110111100100000011100000110010101110010011100110110111101101110 0010000001101101011110010111001101100101011011000110011000101110 @aresgodofwar They're talking in Binary. 1's and 0's. I gave you a cipher. 01000001 = A 01000010 = B It's all ASCII characters. and Each character is 8 bits (that's 8 digits)
  24. Just because this was good practice for my Assembly class..... took a few minutes...but.... I can read this. Albeit after doing some math and conversion to ASCII. lol. With no converter otehr that then in my head. Good ol' 65 = A and for the others that's 01000001 = A
  25. I'm betting he removed Theme support with nLite as if you chose Recommended i believe it gets removed. If you did, start over. As for the My Computer on desktop, that's a registry tweak.
×
×
  • Create New...