Tom's Guide | Tom's Hardware | Tom's Games | PC Safety Suite
![]() |
![]() |
![]() |
Comment:
any one have any idea how i would go about make'n a custom recovery disc so i dont have to pull out all my cd's when i need to reformat? i wanna be able to format and shove in a cd or two and be back in buisness!
+1 | ![]() |
If you are talking about installing software by different manufacters using one disc then it cannot be done in Windows since you need to provide information such as name, serial key, clicking next, agreeing to the terms and conditions of the software.
If can be done in Linux though though a kickstart script, but I'm assuming you are using windows.
Looks like you are stuck there so I would go on and spend the day installing every CD one by one. I would just make sure I don't do such a thing to mess up my computer so I dont have to do it again.:)
Ben,
Pentium 4 1.7GHz, 512 LB Cache
512 DDR RAM PC2700
ATI Radeon 9200SE 128 DDR RAM
Western Digital 80GB 7200 RPM
+1 | ![]() |
You could always get a spare harddrive and create a clone of your system. Put it on the shelf and if/when you have a crash just swap in the clone. You could periodically erase and redo the clone to keep it reasonably up to date.
+1 | ![]() |
i made a master dvd with all my operating systems ,programmes , drivers,and codes
this system works well
only 1 disk to find now:)
+1 | ![]() |
I have created bootable recovery CDs for Win98 using PowerQuest Drive Image Pro version 4 which has scripting capabilities. However, it will not work for XP, for which you require a later version I believe.
You may be able to do it for XP with the newer replacement version of Drive Image or equivalent for XP. Check out the PowerQuest (Or now Symantec) website for more details.
Norton Ghost for XP would be another alternative. I do not know enough about its capabilities.
___________________________________________
☺ When everything else fails, read the instructions.
+1 | ![]() |
The method by markspr1 is very useful if all you want to install is Windows XP.
However, with my recovery CDs, I tend to install all applications (Windows, Office, Other Apps, Games, Media Players, etc) and then create an image using Drive Image.
I then write this image to a bootable CD along with the appropriate scripting which deletes the old XP partition and replaces it with the image. Needless to say I add in a double prompt to make absolutely sure that recovery to the custom "factory" build is really intended and is not just a mistake.
This way saves all the hassle of re-installing Windows and all your other stuff (it can take a long time). The only thing you then need to worry about is e-mail, favourites and APPs installed after the "Recovery" CD was created.
Unless I am mistaken this is what I believe lumpking69 is asking for.
___________________________________________
☺ When everything else fails, read the instructions.
+1 | ![]() |
sorry my mistake, i thought you wanted to have an unattended install Ie; drivers,serial no: installed witout having to do anything except put the cd in and come back in 20mins when its all done.
now if you want all settings - games - apps - email then ghost is definatley the way to go,it will put everthing back excactley the way it was,if you back up regulary that is. the program is this dogs.
only downside as with all these programs is you need to have the hdd space or a dvd/rw, to backup onto.go for ghost!!!!
+1 | ![]() |
Of all the useful information on this thread, the comments from Mosaddique, together with his web site, look the most relevant.
Could I ask Mosaddique to provide more details of how he managed to create a bootable CD/DVD?
Some questions that come to mind are:
Can you use DVD rather than CD?
Do you have to do anything to get the restored machine booting from hard drive?
Is the scripting, with check before reformatting the hard drive included in autoexec.bat?
If the disk image exceeds 650M, can it be split across multiple CD's?Thanks In Advance
+1 | ![]() |
Hello Rbowen, Hello Everyone
To answer the questions:
1. I do not see why you could not use a DVD Writer instead of a CD Writer. I do not possess a DVD Writer so I have not tried that method.
2. My recovery CDs do not need to do anything extra to the hard drive. I.e. it is immediately bootable once the image is restored to it.
3. My scripting is done a three levels.
a). Autoexec.bat and config.sys is used to load the CDROM driver (using drive letter Q) and to execute another bat file called warnings.bat
b). Warnings.bat is used to double check that recovery is required. Then the PowerQuest Drive Image is invoked with a script file (script.txt) to select, delete and restore image to the appropriate partition.
The scripts I use are given at the end.
4. Yes you can span CDs. This is done at the point of creating the image. Drive Image has advanced options which allows an image file not to exceed 670 MB (the size is selectable). If it does then it starts a continuation file and so on till the image is created. For example if your total image size was 1.5 GB. Then Drive Image would create three files called:
Image001.pqi (670 MB), image001.002 (670 MB) and image001.003 (160 MB).
My script files are as below:Autoexec.bat
------------
@ECHO OFF
PROMPT $P$G
MSCDEX.EXE /D:PQCDROM /L:Q
warnings.batConfig.sys
-----------
DEVICE=HIMEM.SYS
DOS=HIGH,UMB
DEVICE=OAKCDROM.SYS /D:PQCDROM
LASTDRIVE=ZWarnings.bat
------------
echo.
echo.
echo INSERT THE RECOVERY CD IN CD-ROM DRIVE NOW!
echo.
echo.
echo The recovery CD will restore the system to its
echo original install state. Any other programs or files
echo will be deleted, it is strongly recommended that
echo you backup any important data before continuing.
echo.
choice Would you like to continue with the recovery?
if errorlevel 2 goto endecho.
clsecho Recovery Disk
echo.
echo WARNING! If you continue you will erase everything from you hard drive
echo.
echo You are about to start the recovery procedure
echo this will erase everything that is currently on
echo your hard drive.
echo.
echo Are you sure you want to restore system?
choice CAll data will be lost!
if errorlevel 2 goto endQ:
PQDI /IMG=Q:\BACKUP01.PQI /CMD=A:\SCRIPT.TXT:end
Script.txt
----------
// Select, from the first drive, the first partition and delete it
SELECT DRIVE 1
SELECT PARTITION 1
DELETE
// Select the first available freespace, select the first image and restore it
SELECT FREESPACE FIRST
SELECT IMAGE 1
RESTORENOTES:
The image file is always named by me as BACKUP01.PQI (BACKUP01.002, BACKUP01.003, etc). This avoids having to edit the warnings.bat file for different images.Drive Image creates two floppies when you install it. I use the first bootable floppy, suitably modified with my script file as above, as the source image floppy when I create the bootable CDROM with the first image BACKUP001.PQI (using Nero). The contents of the second Drive Image floppy is also written to the bootable CD.
The subsequent CDs holding additional parts of the image (ie. BACKUP001.002, BACKUP001.003, etc) are written to CD as normal non-bootable CDs. Drive Image knows and will prompt for subsequent CDs when you perform a restore.
I hope this helps.
___________________________________________
☺ When everything else fails, read the instructions.
+1 | ![]() |
For more information on scripting with Drive Image Pro: Look Here
___________________________________________
☺ When everything else fails, read the instructions.
+1 | ![]() |
I finally found the link to the procedure which I had obtained from the old powerquest tutorials site which no longer exists. This is the procedure that I have detailed in my earlier posting.
This describes "How to Create a Bootable CD with DeployCenter 5.0 or Drive Image Pro 4.0 to Restore an Image File". The procedure is now hosted by Symantec (they now own Drive Image).
The official procedure of how to can be found here.
___________________________________________
☺ When everything else fails, read the instructions.
![]() |
Please help - major probl...
|
unable to upgrade to XP
|

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.