home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / os / mswindo / programm / win32 / 244 < prev    next >
Encoding:
Text File  |  1992-07-22  |  2.0 KB  |  56 lines

  1. Newsgroups: comp.os.ms-windows.programmer.win32
  2. Path: sparky!uunet!morrow.stanford.edu!decwrl!rtech!ingres!rion
  3. From: rion@Ingres.COM (Rion Cassidy (x3357) OGT)
  4. Subject: flexboot problem and solution
  5. Message-ID: <1992Jul23.001914.28690@pony.Ingres.COM>
  6. Reply-To: rion@Ingres.COM (Rion Cassidy )
  7. Organization: Ask Computer Systems Inc., Ingres Division, Alameda CA 94501
  8. References: <13642@mindlink.bc.ca> <1992Jul22.224020.17405@tamsun.tamu.edu>
  9. Date: 23 Jul 92 00:19:14 GMT
  10. Lines: 44
  11.  
  12.  
  13. I recently had an experience that forced me to learn the hard way and I 
  14. thought that I would share with others hopefully so they won't waste as 
  15. much time as I did.
  16.  
  17. I had installed NT successfully (I think!) but then got a new hard disk so I 
  18. did a tape backup.  When I restored to the new disk, the flex boot thing 
  19. didn't operate, so I could only boot DOS.  The problem, apparently, is that 
  20. the boot sector doesn't get restored by the tape software in the same place.
  21.  
  22. It's a relatively simple matter to get the boot sector back in the right 
  23. place, but the files you'll need are on the NT CD, not on your hard disk.  I 
  24. suggest that you put them in a FAT partition NOW so that you can get things 
  25. fixed quickly after a disk crash.  Even if you can reinstall NT quickly, the 
  26. configuration can be very time consuming.
  27.  
  28. On the NT CD, go to the directory \dos2nt\install.  You will need the 
  29. following files:
  30.  
  31. saveboot.sec
  32. ntboot.sec
  33. insert.sec
  34. debug.exe
  35.  
  36. Create a batch file that contains the following:
  37.  
  38. ren bootsec.dos btsecdos.bak
  39. debug < saveboot.sec
  40. debug ntboot.sec < insert.sec
  41.  
  42.  
  43. Run this at the root of your C: drive.
  44.  
  45. This is similar to what "NT2DOS.BAT" does, but obviously we want to skip 
  46. copying all those files.
  47.  
  48. This worked for me and saved the time and trouble of having to reinstall all 
  49. of NT again.  Keep in mind that this is designed to work ONLY where the files 
  50. are all there, but the boot sector is misplaced.
  51.  
  52. I guess the good folks at MicroSoft forgot about people's disks crashing and 
  53. didn't think to provide this batch file.
  54.  
  55. Rion Cassidy
  56.