MSFN Forum: Remastering an XP Home Recovery Disk ? - MSFN Forum

Jump to content



Unattended CD/DVD Guide Homepage · MSFN Forum Rules

If you have questions about customizing Windows XP that are nLite-specific, please post them in the nLite forum, not here. If you have questions regarding the unattended installation of Windows XP, please post them in the Unattended Windows 2000/XP/2003 section.
  • 2 Pages +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

Remastering an XP Home Recovery Disk ? Rate Topic: -----

#1 User is offline   JedClampett 

  • Junior
  • Pip
  • Group: Members
  • Posts: 66
  • Joined: 29-August 11
  • OS:XP Home
  • Country: Country Flag

Posted 29 January 2012 - 03:30 PM

I have an XP Home Edition Recovery Disk for an Advent 6415 laptop, that I would like to remaster for another Advent laptop (a 7096).

Is it possible to remaster a recovery disk so I can add the missing drivers for the later model laptop? At the moment XP Home installs onto the 7096 OK, but most of the hardware drivers are missing, even the USB ports and DVD drive will not work, so I have no way to get the missing drivers onto the newer laptop.

TIA

Jed :)


#2 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 9,112
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 30 January 2012 - 07:13 AM

Set aside legal implications (about License), the answer is Yes/No.
http://homepage.ntlw...no-answers.html
Yes, generally speaking it is possible but No, it depends greatly on the specific way the Recovery Disk is made.

The "proper" way is to install to the 7096 from a "full" (and legally Licensed) source, then create a Recovery CD/DVD for it.

jaclaz

#3 User is offline   Tripredacus 

  • K-Mart-ian Legend
  • Group: Super Moderator
  • Posts: 7,349
  • Joined: 28-April 06
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 30 January 2012 - 09:37 AM

For your own personal use, it shouldn't be a problem really. You can try putting your driver files (INF based) in the INF folder. I had to do this recently using XPe for some weird USB device.

#4 User is offline   JedClampett 

  • Junior
  • Pip
  • Group: Members
  • Posts: 66
  • Joined: 29-August 11
  • OS:XP Home
  • Country: Country Flag

Posted 30 January 2012 - 01:16 PM

Thanks for those replies. I seem to be getting nowhere fast with this :no:

I used ISObuster to extract these files from the Advent 6415 DVD:

BootCatalog.cat
Microsoft Corporation.img

I have added those to the dvdrecorder directory that contains the DVD tree.

I'm creating and burning the remastered ISO image on Centos 5.7 using this command to create the modified iso image file:

#! /bin/bash

# ----------------------------------------------------#
# create the iso image file

# This works OK, and creates the iso verbatim

mkisofs -o Advent6415-WinXP-patch1.iso \
-volid Advent6415-WinXP-patch1 \
-sysid LINUX -rational-rock -joliet -joliet-long \
-untranslated-filenames -max-iso9660-filenames \
-b "Microsoft Corporation.img" \
-iso-level 2 \
-no-emul-boot \
-boot-load-size 4 \
./dvdrecorder
exit 0



At the moment I'm testing if I can remaster the original DVD and boot from it - there are no modifications made to it yet.

When I try to boot from the new DVD the machine gets stuck after it has output:

Searching for Boot Record from CDROM...OK

That's as far as it goes.

I'm wondering if the boot loader does a md5sum check on the media?

This is inside Microsoft Corporation.img file:

...
.Error! Could not verify CDROM image.
...



Any suggs would be greatly appreciated.

It should be OK to create and burn the DVD on Linux, as I have found this post here, about Bootable CD Wizard:

http://flz.userdir.o...nemkisofs_e.htm

This post has been edited by JedClampett: 30 January 2012 - 01:21 PM


#5 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 9,112
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 30 January 2012 - 02:10 PM

The parameters you gave mkisofs simply do not sound "right".
Particularly on Linux sytems you should be VERY aware on CaSe SeNsItIvEnEsS.
A "normal" XP INSTALL (NOT recovery, which is what you asked about) disk has the /I386 folder and it is populated by 8+3 CAPITAL ONLY files.
A SP integrated INSTALL disk (or a Recovery disk, or anyway an OEM disk) may have the need for a "wider" -iso-level and/or -multidot.
The typical mkisofs command used (on Windows) to take care of most of the issues (but the name of files must be compliant on source) is more complex, in your case it could be:
mkisofs -v -iso-level 4 -l -N -D -d -J -joliet-long -r -volid "Advent6415-WinXP-patch1" -A MKISOFS -sysid "Win32" -b cdboot.bin -no-emul-boot -boot-load-size 4 -allow-multidot -hide cdboot -hide boot.catalog -o Advent6415-WinXP-patch1.iso


See more here:
http://reboot.pro/9696/
AND here:
http://ubuntuforums....p/t-338906.html

"Microsoft Corporation.img" could be another problem (the space in it and the mixed mode CAPITAL and small letters).
Rename it to "cdboot.bin".

All in all your command line (still in Windows) could be:
mkisofs -v -iso-level 4 -l -D -d -J -joliet-long -r -volid "Advent6415-WinXP-patch1" -A MKISOFS -sysid "Win32" -b cdboot.bin -no-emul-boot -boot-load-size 4 -allow-multidot -hide cdboot -hide boot.catalog -o Advent6415-WinXP-patch1.iso


You will have to verify if the particular MKISOFS you are using supports the used options.

The page you quoted says:

Quote

For example:
mkisofs -relaxed-filenames -d -D -J
-b bcdwboot.bin -no-emul-boot -boot-load-size 4 -o mybootcd.iso ./

ATTENTION! If you are adding the original Microsoft Windows XP/2000/NT bootsector (NT5BOOT.BIN or NT4BOOT.BIN) you ABSOLUTELY have to add the following option, too: -N.
Otherwise you will get the error 'CDBOOT: Couldn't find NTLDR' on startup.

For example:
mkisofs -relaxed-filenames -d -D -N -J
-b nt5boot.bin -no-emul-boot -boot-load-size 4 -o mybootcd.iso ./


You seemingly did not use the -N, nor the -relaxed-filenames nor the -d -D !

If you check *any* tutorial about re-creating a Windows XP INSTALL disk after having slipstramed a service pack with mkisofs, you will see how the mentioned switches are always present:
http://www.g-loaded....d-with-mkisofs/
http://sysblogd.word...nstallation-cd/
http://www.montanali...mWithLinux.html

jaclaz

#6 User is offline   JedClampett 

  • Junior
  • Pip
  • Group: Members
  • Posts: 66
  • Joined: 29-August 11
  • OS:XP Home
  • Country: Country Flag

Posted 30 January 2012 - 03:17 PM

Thanks jaclaz.

I might try again soon on a Vista laptop, using something like Nero to create the ISO file and burn it to disk from there.
See if that helps!
Jed :)

#7 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 9,112
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 31 January 2012 - 03:01 AM

View PostJedClampett, on 30 January 2012 - 03:17 PM, said:

Thanks jaclaz.

I might try again soon on a Vista laptop, using something like Nero to create the ISO file and burn it to disk from there.
See if that helps!
Jed :)

WHY? :w00t:

The "recommended" way is to use mkisofs (with the proper switches) or OSCDIMG (again with the proper switches).
And you should always IMHO use nothing but IMGBURN to burn the .iso to media.

jaclaz

#8 User is offline   JedClampett 

  • Junior
  • Pip
  • Group: Members
  • Posts: 66
  • Joined: 29-August 11
  • OS:XP Home
  • Country: Country Flag

Posted 31 January 2012 - 12:08 PM

Thanks for those links jaclaz. I'm going to install those programs you sugggested onto my Vista laptop and give it another try at creating a bootable DVD - basically just a cloned boot disk for now.

Jed :)

#9 User is offline   JedClampett 

  • Junior
  • Pip
  • Group: Members
  • Posts: 66
  • Joined: 29-August 11
  • OS:XP Home
  • Country: Country Flag

Posted 31 January 2012 - 02:17 PM

Thnx again jaclaz. I'm very taken with ImgBurn and have it installed on my Vista laptop OK. Following this IB forum article, it looks like I can do the whole remastering process just using ImgBurn?

How to create a Windows XP installation disc (bootable) using ImgBurn
http://forum.imgburn...showtopic=11190

Jed :)

#10 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 9,112
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 31 January 2012 - 04:14 PM

View PostJedClampett, on 31 January 2012 - 02:17 PM, said:

Thnx again jaclaz. I'm very taken with ImgBurn and have it installed on my Vista laptop OK. Following this IB forum article, it looks like I can do the whole remastering process just using ImgBurn?

How to create a Windows XP installation disc (bootable) using ImgBurn
http://forum.imgburn...showtopic=11190

Jed :)

Yes, you can, but as said the result being functional depends on a number of factors, that tutorial is about:
  • "standard MS source"
  • "standard Service Pack" integration


What you have in your hands may be:
  • a OEM Install disk (and the OEM may have added something that need "additional" or "more relaxed" settings)
  • a OEM Recovery disk (and the OEM may have added something that need "additional" or "more relaxed" settings)
  • any of the above with additional KB integrated (and this may need "additional" or "more relaxed" settings)
  • to the above you add the possible case-sensitiveness involved in either the ripping, the running OS or the file copying


The good news are that you have nothing or very little to lose, in the worst case you will have one more shiny coaster.

jaclaz

#11 User is offline   JedClampett 

  • Junior
  • Pip
  • Group: Members
  • Posts: 66
  • Joined: 29-August 11
  • OS:XP Home
  • Country: Country Flag

Posted 01 February 2012 - 03:27 AM

View Postjaclaz, on 31 January 2012 - 04:14 PM, said:


What you have in your hands may be:
  • a OEM Recovery disk (and the OEM may have added something that need "additional" or "more relaxed" settings)
  • any of the above with additional KB integrated (and this may need "additional" or "more relaxed" settings)
  • to the above you add the possible case-sensitiveness involved in either the ripping, the running OS or the file copying

The good news are that you have nothing or very little to lose, in the worst case you will have one more shiny coaster.

jaclaz


I'm using this OEM recovery disk mentioned on this thread:

http://www.msfn.org/...post__p__977411

and the link to a picture of the DVD is here:

http://oi51.tinypic.com/290v9td.jpg

I have created lots of shiny coasters when learning how to burn my own CD/DVD Linux installation disks. So I just practice on DVD+RW disks, which means:

1) They only need to be formatted once.

2) If the burn goes wrong then I don't get another toasted disk. I can just do another test burn again on the same disk.

Once I am happy with the resulting test disk, then I would burn it to write-once media, either CD-R or DVD+R.

I'll give ImgBurn a try later today, with creating and burning a verbatim copy of this recovery disk, and let you know how it goes.

There are 2 boot image files on the Advent 6415 DVD recovery disk:

BootCatalog.cat
Microsoft Corporation.img

Do I need to add the BootCatalog.cat file as well to the new bootable copy?

Jed :)

This post has been edited by JedClampett: 01 February 2012 - 03:29 AM


#12 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 9,112
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 01 February 2012 - 04:52 AM

View PostJedClampett, on 01 February 2012 - 03:27 AM, said:

There are 2 boot image files on the Advent 6415 DVD recovery disk:

BootCatalog.cat
Microsoft Corporation.img

No, there is a boot catalog and a boot sector.

View PostJedClampett, on 01 February 2012 - 03:27 AM, said:

Do I need to add the BootCatalog.cat file as well to the new bootable copy?

No.

jaclaz

#13 User is offline   cdob 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 757
  • Joined: 29-September 05

Posted 01 February 2012 - 08:54 AM

View PostJedClampett, on 29 January 2012 - 03:30 PM, said:

even the USB ports and DVD drive will not work

Did you delete USB and DVD at device manger and boot again?


View PostJedClampett, on 01 February 2012 - 03:27 AM, said:

I'm using this OEM recovery disk mentioned on this thread:

That's a custom recocery media by design:
A PE is bootted from DVD:\I386\
A application restores a hard disk image from DVD:\PRELOAD\
Remastering this requires editing the disk image files.
No idea which application created this hard disk image, can be password protected in addition.

However DVD:\I386DIST\ seems to contains XP installation files.
What about install XP from single files?

Delete directories
iso/dvdrecorder/I386/
iso/dvdrecorder/PRELOAD/

rename iso/dvdrecorder/I386DIST/ I386

Follow imgburn XP installation guide to burn a CD/DVD.
Remember slipstream SP3 requies a running XP.
Try exising XP files first. Add SP2, SP3 and drivers to a addional directory \SP\

#14 User is offline   JedClampett 

  • Junior
  • Pip
  • Group: Members
  • Posts: 66
  • Joined: 29-August 11
  • OS:XP Home
  • Country: Country Flag

Posted 01 February 2012 - 04:06 PM

Thanks jaclaz and cdob for those replies. I have managed to use ImgBurn to successfully make a verbatim copy of the Advent 6415 Combo DVD (it shows as a CD image in ISOBuster or ImgBurn). I burnt it to a 700MB Maxell CD-RW disk OK. Placing that in the Advent 6415 Combo and it boots OK and starts the installation procedure. I guess the next thing to try is to build the ISO image manually in ImgBurn from a directory structure, write that back to this CD-RW, and see if I can boot from that.

Update: I have just tried to burn the ISO image that worked on the CD-RW disk to a DVD+RW disk, and I'm getting I/O Error! on the verify cycle.

http://i42.tinypic.com/mt41ud.jpg

So maybe that media is at fault?

Update: Even though the verify for the DVD+RW disk failed, the Advent 6415 is still able to boot from this disk, which could present a problem when running Windows after the installation completes.

Jed :)

This post has been edited by JedClampett: 01 February 2012 - 04:40 PM


#15 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 9,112
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 01 February 2012 - 04:49 PM

View Postcdob, on 01 February 2012 - 08:54 AM, said:

No idea which application created this hard disk image, can be password protected in addition.

It seems like the *whatever* is also used on some COMPAQ/HP and Gateway:
http://www.geekstogo...ing-windows-xp/
http://forums.world-...t=33605&start=0

My (educated :unsure: ) guess, is that it is the SoftThinks thingie PCAngel:
http://www.adventsup...topic.php?t=532

In more plain terms, it's a problem to deal with those. :ph34r:
Only seemingly OT:
http://www.msfn.org/...d-not-be-found/

Just for the record it seems like the old site pcangelle.com is now connected to Dell :w00t:, and the actual PC Angel LE site is here:
https://www.org-infor.fr/
https://www.org-info...E/CONNECT/PCALE
(or maybe it's a mirror :unsure:)

I think the only viable approach is - as cdob suggested - to rebuild a "plain" install CD/DVD, just for the record, not entirely unlike what jaclaz originally suggested :
http://www.msfn.org/...dir/page__st__9

@JedClampett
The idea behind verifying after a burn is to actually believe when it says that the verify failed, and, consequently, try again, NOT to pretend that it's b***§hit and ignore the error.
The screenshot says that that disk has problem accessing sector 213520, it implies that anything before sector 213520 is OK, and that anything after it is "a suffusion of yellow".
OF COURSE it will boot (since normally only first few sectors are used in booting) it may also initiate the install/recovery correctly, but it is LIKELY it will throw an error when it will need to read sector 213520, possibly leaving you with a half-finished, partial install.


jaclaz

#16 User is offline   cdob 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 757
  • Joined: 29-September 05

Posted 01 February 2012 - 04:56 PM

View PostJedClampett, on 01 February 2012 - 04:06 PM, said:

I have managed to use ImgBurn to successfully make a verbatim copy of the Advent 6415 Combo DVD (it shows as a CD image in ISOBuster or ImgBurn). I burnt it to a 700MB Maxell CD-RW disk OK.

I'm confused:
How do you make a verbatim copy?
How much data holds the rescue DVD? How to write a full DVD to CD?

View PostJedClampett, on 01 February 2012 - 04:06 PM, said:

a DVD+RW disk, and I'm getting I/O Error! on the verify cycle.

Trust ImgBurn, distrust the media: destroy the media.

Quote

Even though the verify for the DVD+RW disk failed, the Advent 6415 is still able to boot from this disk
..by chance and may cause unpredictable errors in future. Distrust thir DVD+RW media in future.

#17 User is offline   JedClampett 

  • Junior
  • Pip
  • Group: Members
  • Posts: 66
  • Joined: 29-August 11
  • OS:XP Home
  • Country: Country Flag

Posted 01 February 2012 - 04:58 PM

View Postjaclaz, on 01 February 2012 - 04:49 PM, said:


My (educated :unsure: ) guess, is that it is the SoftThinks thingie PCAngel:
http://www.adventsup...topic.php?t=532

@JedClampett
The idea behind verifying after a burn is to actually believe when it says that the verify failed, and, consequently, try again, NOT to pretend that it's b***§hit and ignore the error.
The screenshot says that that disk has problem accessing sector 213520, it implies that anything before sector 213520 is OK, and that anything after it is "a suffusion of yellow".
OF COURSE it will boot (since normally only first few sectors are used in booting) it may also initiate the install/recovery correctly, but it is LIKELY it will throw an error when it will need to read sector 213520, possibly leaving you with a half-finished, partial install.

jaclaz


Yes - the Copyright Notice when the install starts is SoftThinks 2001.

The reason I tried to see if it would boot up OK, is this disk verified OK when using K3b under Linux. So that makes me wonder about other disks I have burnt using K3b that verified 'OK' ?

#18 User is offline   JedClampett 

  • Junior
  • Pip
  • Group: Members
  • Posts: 66
  • Joined: 29-August 11
  • OS:XP Home
  • Country: Country Flag

Posted 01 February 2012 - 05:03 PM

View Postcdob, on 01 February 2012 - 04:56 PM, said:

View PostJedClampett, on 01 February 2012 - 04:06 PM, said:

I have managed to use ImgBurn to successfully make a verbatim copy of the Advent 6415 Combo DVD (it shows as a CD image in ISOBuster or ImgBurn). I burnt it to a 700MB Maxell CD-RW disk OK.

I'm confused:
How do you make a verbatim copy?
How much data holds the rescue DVD? How to write a full DVD to CD?

View PostJedClampett, on 01 February 2012 - 04:06 PM, said:

a DVD+RW disk, and I'm getting I/O Error! on the verify cycle.

Trust ImgBurn, distrust the media: destroy the media.

Quote

Even though the verify for the DVD+RW disk failed, the Advent 6415 is still able to boot from this disk
..by chance and may cause unpredictable errors in future. Distrust this DVD+RW media in future.


Although it says DVD on the disk, it's only 640MB in size, so it fits onto the 700 MB CD-RW fine.

Yes - I will trust ImgBurn and seek out some decent media. This is TDK which is supposed to be a good make?
I'll check out the DVD/CD reviews on the ImgBurn forum.

#19 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 9,112
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 01 February 2012 - 05:15 PM

View Postcdob, on 01 February 2012 - 04:56 PM, said:

I'm confused:
How do you make a verbatim copy?


You use one of these:
Spoiler


:angel

;)

:lol:

jaclaz

#20 User is offline   cdob 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 757
  • Joined: 29-September 05

Posted 01 February 2012 - 11:56 PM

View PostJedClampett, on 01 February 2012 - 05:03 PM, said:

Although it says DVD on the disk, it's only 640MB in size, so it fits onto the 700 MB CD-RW fine.

How are disk builded? One 1.2 mm thick disc layer? Or two 0.6 mm thick disc layers glued together?
http://en.wikipedia.org/wiki/CD-ROM
http://en.wikipedia.org/wiki/DVD

I wonder previous assumption: hard disk image and full installation files.
Make a full file list with names, dates and size, either dir or ls. Compress the list and upload it.

Quote

This is TDK which is supposed to be a good make?
Read the ATIP. Most good manufacturer dosn't produce CD/DVD discs anymore.

Read at a cdrinfo media section.
http://www.cdrinfo.c....asp?forumid=56
http://www.cdrinfo.c...tm.asp?m=141854

Share this topic:


  • 2 Pages +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy