Jump to content

Jito463

Member
  • Posts

    442
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About Jito463

  • Birthday 01/13/1977

Contact Methods

  • Website URL
    http://

Profile Information

  • OS
    none specified

Jito463's Achievements

0

Reputation

  1. Both optical drives are IDE, so that shouldn't be an issue (I added the second one later, to test if the first was the problem). I did consider the bootfix.bin as the culprit, but didn't consider removing it from the image. However, given that it works on another PC, I can't imagine that being the case. It's just the standard bootfix for i386/AMD64, nothing has been modified. I've even used the same bin file for standard Windows XP discs (not x64). I appreciate the suggestion, though. I suppose I should mention a few specs, now that I think about it. The motherboard is a Gigabyte K8N Ultra-9. It has an Athlon X2 4400+ with 4 x 512MB Corsair XMS sticks. I've considered removing some of the memory, but I'm not getting any stability issues, so I doubt that it's related. However, I may test that later when I have a chance. *EDIT* On consideration, I just realized I could try a SATA DVD drive instead. When I have an opportunity to power down my primary PC, I'll pull the optical drive from it and test again. Still, if anyone has encountered this issue before, it would be helpful to hear your experiences with it. Even if you never did ultimately resolve the problem.
  2. Ok, so I've got an unusual issue here. I've figured out a workaround, but I'm still curious to determine why this is happening, so as to prevent it from occurring in the future. Searches online yielded no results, save for what I had already determined myself. I'm attempting to reinstall XP Pro x64 on my backup computer. When I attempt to boot from the CD, it just skips that step and boots straight to the HDD. I've already made sure CD/DVD is the first boot device, and I've even taken the step of hitting F12 to choose the first boot device on startup. This isn't an issue with the DVD drive or the disc, as I've used 3 different discs on 3 different drives (including an external). I've also tested one of the discs on another laptop (just to make sure it would boot), and it did indeed begin the setup from the CD. So the discs are fine, and the drives are fine. I've tried using my current 36GB Raptor drive, and a test 40GB IDE drive I had laying around, the same situation occurs with both. However, if I completely wipe the 40GB (haven't tested yet with the Raptor, and don't want to until I'm sure everything else is working fine) - including all partition information - then the CD will boot without incident. I'm currently installing on the 40GB to make sure nothing is wrong with the system, before I proceed to wipe my main drive; but I was curious to find out if anyone else has encountered this issue and/or knows what the cause is and how to rectify it. It just dawned on me that I haven't tested with another version of Windows, but I doubt that would matter since I've already determined the discs work. Still, any insight would be appreciated.
  3. I always lived by the rule that - when using a search engine - the more relevant information you type in, the more relevant information you get out. In this case, I guess I was just over-complicating things. Thanks for the heads up.
  4. Just tested, and without /WAIT in my .cmd file, the programs all launched simultaneously. Added /WAIT, and the programs only ran one at a time. Sorry, but you're mistaken.
  5. Some time back (and I believe I got them from here), I downloaded some tools to add expanding and compressing Windows files to the "Send To" Context Menu. There was a batch file version, and a VBS version. These worked great, all the way up to Windows Vista x64 (including through SP2). However, now I've moved on to Windows 7 x64, and I'm having some trouble. I can expand the files just fine, since Windows 7 has it's own Expand.exe built in. But ModifyPE.exe is no longer functioning. I get an error saying: ERROR - MODIFYPE CAN'T PATCH "filename.ext" Obviously, it does me no good to be able to expand a file, if I can't subsequently compress it again. I don't absolutely have to do this on my Win7 machine. I have two other machines, one with XP Pro and another with XP Pro x64, both of which would work fine to do the job, but it would be nice if I could do what I needed on all three of my systems. I've already disabled UAC, so that's out of the picture. Has anyone found a workaround, or possibly a better method of expanding and compressing Windows system files in Windows 7? I'm always game to try new methods, if it's an improvement over the old method. I tried searching the forums for "modifype windows 7", but found no relevant results. Any suggestions or advice would be appreciated, even if it's just to tell me that I'm out of luck, so I don't waste my time further.
  6. I'd suggest not to use that syntax… IF ERRORLEVEL = n is first of all not correct Also an errorlevel of 0 means that errorlevel was 0 or greater which in all cases would be true. This would probably replace your command better IF EXIST "%PROGRAMFILES(X86)%" (GOTO 64BIT) ELSE (GOTO 32BIT) It's always worked for me, which is why I used it, but I will admit your version is much cleaner and will probably switch to that. By the way, in your version, the ( ) around the GOTO commands doesn't need to be there.
  7. I've tried a number of different options, but I can't seem to make Opera install silently. In fact, when I try, it just launches like it's going to install, then stops doing anything. I've tried using the classic installer with /s, doesn't work. I've tried the regular installer with /s /s /v/qn /s /v/qn /V ALLUSERS=1 CREATE_DESKTOP_ICON=1 CREATE_QUICKLAUNCH_ICON=1 CREATE_STARTMENU_ICONS=1 MULTI_USER_SETTING=0 (also with 1) I've tried the MSI file from the regular installer with /qn /qn ALLUSERS=1 CREATE_DESKTOP_ICON=1 CREATE_QUICKLAUNCH_ICON=1 CREATE_STARTMENU_ICONS=1 MULTI_USER_SETTING=0 (also with 1) /passive /qn ALLUSERS=1 CREATE_DESKTOP_ICON=1 CREATE_QUICKLAUNCH_ICON=1 CREATE_STARTMENU_ICONS=1 MULTI_USER_SETTING=0 (also with 1) msiexec.exe /i <Opera_964.msi> /passive /qn ALLUSERS=1 CREATE_DESKTOP_ICON=1 CREATE_QUICKLAUNCH_ICON=1 CREATE_STARTMENU_ICONS=1 MULTI_USER_SETTING=0 (also with 1) None of these work. Any suggestions? Occassionally I have to reinstall Windows on a customer's machine, and I'd like to add Opera to my silent installs. I already have FireFox silent from another link here, but can't seem to get Opera to work. *EDIT* Bah, never mind. In my attempt to try many different options, I didn't bother to check between each attempt to see if anything was installed. It had got installed at some point, but didn't create any shortcuts. Going back to the classic installer with /s after making sure all traces were removed fixed the problem. Hopefully this will help someone else down the road.
  8. I know this is an older post, but here's what I've always used: %ProgramFiles(x86)% IF ERRORLEVEL = 1 GOTO x64 IF ERRORLEVEL = 0 GOTO x86 If it exists (ERRORLEVEL = 1), then it runs the 64-bit (x64) commands If it does not exist (ERRORLEVEL = 0), then it runs the stanard 32-bit (x86) commands. Of course, you could do the same with SysWow64 instead. Just pick any file or folder that would only exist in a 64-bit OS.
  9. Could it possibly be caused the the TCP/IP limits in Windows XP? If so, removing/increasing the TCP/IP limits might change that.
  10. Hmm, it seems that upon further investigation, there is no way to stop WMP11 from syncing altogether. I'm still uncertain as to why it feels the need to constantly access my device, though. Especially considering that it's not even a media player.
  11. Ok, got a bit of a unique problem. Then again, I can fix most issues, so it usually takes unique ones to get me to post. WMP11 has a nifty (though I would argue, annoying) feature of syncing to any USB device, even if it's not a media player. In this case, it's my Corsair flash drive. I noticed a while back that when WMP was running, my flash drive's access light would run non-stop until I closed WMP. This, as you can imagine, irked me to no end (for one, that light is really bright). I've gone into the Device options and changed the properties for my Corsair so all Sync options were unchecked. I've gone into the Advanced Options and disabled most of the "background sync" options. Yet still, from time to time (seemingly at random), my USB device will start flashing constantly when WMP11 is running, and won't stop until I close the program. After an exhaustive search on Google, I turned up no useful information. The only closely related posts I could find mentioned turning on manual syncing, or syncing when connected. Frankly, I don't want it to sync at all. I tried deleting the "DeviceInfo from the "WMPInfo.xml" file that WMP generates on my flash drive and seting the file to read-only, but that just causes WMP to crash whenever I open it and my flash drive is plugged in. So, I turn to you, in the hopes that someone reading this will have an answer on how to disable the sync feature for a particular device in WMP11. Barring that, I wouldn't mind turning off the sync feature altogether.
  12. Say what you will, but Megabytes is universally accepted to mean 1024 Kilobytes, which equals 1024 Bytes. Which means there's 1,048,576 Bytes in a Megabyte. You can keep you Mebibytes, and shove it.
  13. Ok, but what about the WIN51 files? I know WIN51IP2 goes on disc 2, but apparently that's not the only file as it's still not being recognized as disc 2. I combined the two discs together some time ago for service work so we'd be able to install on a customer's machine from the multiboot DVD, but now I can't remember the structure to split it. Obviously the CMPNENTS folder, but what else? *EDIT* Just realized I hadn't put the WIN51 file on the disc 2, but is there anything else I'm forgetting while I try this?
  14. Sorry to ressurect an ancient thread, but I thought it would be interesting to find out what happened to this miracle "AV-killer". Anyone know if this guy turned out to be blowing smoke up our USB ports? Or was he actually on the level, and the software is out there now?
×
×
  • Create New...