Windows 2000 Updated Disk

NoNameRequired

Administrator and Blizzard Tech FAQ Editor
Reaction score
1
Would it be possible to create an updated Windows 2000 disk to avoid updating everything via the Windows Update Site and rebooting ~ 5 times ?

By that I mean creating an home-made Windows 2000 disk which already has the newest DirectX, critical updates, Internet Explorer, Service packs, etc. This would save a lot of time for I format quite often.
 
D

Darthtoast

Guest
There's a network download somewhere on the MS site that's about 100mb that contains all the fixes up to this point. But there's a new service pack coming out sometime soon.
 

NoNameRequired

Administrator and Blizzard Tech FAQ Editor
Reaction score
1
Yes, I heard about slipstreaming SP2 into the Windows 2000 CD. I was wondering if this could be done for all the updates.

Alternatively, someone suggested that I install Windows 2000, update it and create an image file of my HD on a CD. The problem is, Windows 2000's install is about 700MB so I doubt it could fit on one CD unless the compression does a good job. How would I go around formating my HD into NTFS and copying the contents from the CD onto the HD ?
 

Rapmaster

Ultra Cool Member
Reaction score
95
That would require software such as Norton Ghost or Powerquest DriveImage


--

just download the various updates manually from here:
http://v4.windowsupdate.microsoft.com/catalog/en/default.asp

and burn them to CD

You will need to run them all afterwards (many of them may require to be run in a certain order.)

It will be a pain to keep the CD up to date, so just put the big things like Service Packs and IE on there.
 

NoNameRequired

Administrator and Blizzard Tech FAQ Editor
Reaction score
1
I don't mind the minor updates such as critical fixes, I just don't want to download the big ones and reboot 5 times each time I reformat.
 

NoNameRequired

Administrator and Blizzard Tech FAQ Editor
Reaction score
1
I only managed to slipstream SP3, but I would really like to splistream IE6, WMP8, DirectX 8.1b and hotfixes if possible.

I found a site which explains how this is done, but it is beyond my computer knowledge. I'm having a hard time understanding the instructions. http://www.tech-hints.com

Has anyone here ever managed to update their Win2K CD ?
 
S

Swilo

Guest
WMP6.4 > All.
I'll have to look into this "Slipstreaming" thing when I install 2k.
 
F

Fjellu

Guest
Including IE6, DX8, WMP7

A part of my "Unattended.doc"

Cmdlines.txt

The first method for running additional commands during the Win2K setup process involves cmdlines.txt, which contains a list of one or more commands for Setup to run automatically during the GUI-mode portion of the setup process (during the optional components portion).

The cmdlines.txt has to be in the root of $OEM$. The cmdlines.txt is a simple text file, which you make with notepad. The syntax is

[Commands]
“Command_1”
“Command_2”
……………..
“Command_x”

You cannot use a parameter surrounded by quotes in cmdlines.txt. If you need quotes, use a batch file, which you call from cmdlines.txt.

Cmdlines.txt runs during a portion of Setup in which no user is logged on and you have no guarantee of network connectivity, Setup writes user-specific information to the default portion of the Registry. As a result, all subsequently created users receive whatever information Setup has written. The Windows installer service is not available during this stage of setup.

You can install Internet Explorer 6, DirectX 8.1 and Windows Media Player 7.1 using cmdlines.txt. The problem here is that the installation programs needs input from the user and you want to suppress that when you do a fully unattended setup.

For Internet Explorer 6 you should use IEAK6 (which you should have, if you followed the instructions in Slipstream.doc).

When installing IEAK6 choose the license for “Site License and Intranet…”.

First you should know which files are included in the installation package of IE6 for W2K. To do this, run the ie6setup.exe (with IE6 not installed). From the advanced options choose to save the installations files to disk. Move these files to save place for later use.

In order to create new packages of IE6 in the future make a separate project for it. Create a d:\IEAK6 folder with two subfolders “Builds” and “Download”.

Run the “Internet Explorer Customization Wizard” Corporate Version. On the “File locations” page choose “d:\IEAK6\Builds” for Destination folder and from advanced options “d:\IEAK6\Download” choose Component Download Folder. On the “Media Selection” page choose “Flat”.

The only page really important is “Add Custom Components”. You can add applications, hotfixes and almost anything you want. You can also add appropriate setup parameters for a silent, no-reboot install.

In my project I have the following:

MSN Messenger 4.6 mmssetup.exe /Q:A /R:N
Euro Conversion Tool euroconv.exe /Q:A /R:N
Windows 2000 Compatibility Updates appupd.exe /Q:A /R:N
Visual Basic Scripting Support vbs56nen.exe /Q:A /R:N
Jet Database Engine 3.5 jet35sp3.exe
Cumulative Patch for Internet Explorer q321232.exe /Q:A /R:N
Visual Basic 6.00.8964 sp5 VBRun60sp5.exe /Q:A /R:N
Windows NT Installer 2.0.2600.0 InstMsi.exe /Q
Data Access Components 2.70.9001.0 MDAC_Typ.exe /Q

For q321232.exe choose “Install after system restarts” and for the rest “Install after Internet Explorer”.

Make your own personalized other supplements and create the custom package.

The custom package is in d:\IEAK6\Builds\FLAT\WIN32\EN\. It consists of all files needed for installation on win95/98 and NT as well. Now you have to compare it to the installation package of IE6 for W2K, which you saved earlier.

Delete all files not needed. The q321232.exe will be inside a customX.cab and the other extra files will be in the folder. Also save ie6setup.exe, iecif.cab and iesetup.ini. Check the timestamps and you know which files to delete.

Make a batch file called ie6.bat

@echo off
echo Installing Internet Explorer 6 and some patches
echo.
echo Installing...
echo.
echo Please wait
%systemdrive%\winapps\ie6\ie6setup.exe
;endfile

For DX81 and WMP71 you use the same method (installing from cmdlines.txt). Extract the files to folders beneath \$OEM$\winapps, DIRECTX and WMP (Use the method explained in Slipstream.doc #6). Create batch files for the installation, directx.bat and wmp.bat with the switches needed. For troubleshooting purposes include an echo. Here is an example of the files.

@echo off
echo Installing DirectX 8.1a
echo.
echo Installing...
echo.
echo Please wait
%Systemdrive%\winapps\directx\dxsetup.exe /install /silent
;endfile

@echo off
echo Installing Windows Media Player 7.1
echo.
echo Installing...
echo.
echo Please wait
%Systemdrive%\winapps\wmp\setup_wm.exe /Q:A /R:N
;endfile

OPTIONAL! If you want to save some additional space you can compress the files to a self-extracting package using iexpress.exe. This file is included into IEAK6. Run iexpress.exe and make two files directx.exe and wmp.exe. The needed switches should be included into the package (DXSETUP.EXE /install /silent and setup_wm.exe /Q:A /R:N). This way you save A LOT of space on the CD. It also makes troubleshooting easier. You can test you package before applying it to the CD. If you compress the files change the install commands in directx.bat to
(%Systemdrive%\winapps\directx\directx.exe)
and in wmp.bat to
(%Systemdrive%\winapps\wmp\wmp.exe)

Now you have 3 packages with lots of files, which can be installed through cmdlines.txt. Depending on where you put your batch files you can decide on the installation process further. If you want to use relative paths in cmdlines.txt put your commands into batch file/s and put the batch file/s directly into the root of $OEM$ (\$OEM$\ie6.bat). The file so far would be

[COMMANDS]
".\Ie6.bat"
".\directx.bat"
".\wmp.bat"
;endfile

If the batch files are not directly in the root of $OEM$ you cannot use relative paths. Putting the batch file/s into the $OEM$\$1\winapps\ folder you would have to use "C:\Winapps\Ie6.bat". This would not make it possible to install to any other drive than the one specified in cmdlines.txt.

You can also make packages for cmdlines.txt, installing the WMP71 Bonus Pack and WMP71 update (first update, not however the “26 June 2002 Cumulative Patch for Windows Media Player (Q320920)”.
 
General chit-chat
Help Users
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.
  • The Helper The Helper:
    Power back on finally - all is good here no damage
    +2
  • V-SNES V-SNES:
    Happy Friday!
    +1
  • The Helper The Helper:
    New recipe is another summer dessert Berry and Peach Cheesecake - https://www.thehelper.net/threads/recipe-berry-and-peach-cheesecake.194169/

      The Helper Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top