Hallo,
Du hast diese Aussage falsch verstanden. Ich wollte damit sagen, dass, auch wenn man seine Partitionstabelle zerhaunen hat erstmal Formatiert werden muss, bevor die Daten endgültig "weg" sind - auch wenn es recht schwer wird, die Partitionstabelle _exakt_ wieder so einzurenken wie sie war, wenn man erstmal dran rumgespielt hat.
Ich dachte immer wenn der MBR zerschossen ist geht sowiso nix mehr (nicht mal format C:).
Ich habe mal ein tool bzw. vbs.script gekriegt über pcwelt damit lässt sich falls das
windows noch geht den kompletten MBR erstellen auf einer diskette unter dem namen bs.bat
Für alle die es interessiert hier das script:
@echo off
if (%1)==() goto Help
if not (%1)==(save) if not (%1)==(write) goto Help
if (%1)==(write) goto Write
echo Leere Diskette einlegen...
echo ACHTUNG: Diskette wird berschrieben!
echo ABBRECHEN mit STRG-C, Fortfahren mit beliebiger Taste
echo.
pause > nul
format /autotest a:
sys c: a:
attrib -s -r -h a:\*.*
copy /y %0.bat a:\bs.bat
copy /y %comspec% a:\command.com
copy /y %winbootdir%\himem.sys a:\
copy /y %winbootdir%\regedit.exe a:\
copy /y %winbootdir%\command\debug.* a:\
copy /y %winbootdir%\command\attrib.* a:\
copy /y %winbootdir%\command\format.* a:\
copy /y %winbootdir%\command\sys.* a:\
copy /y %winbootdir%\command\fdisk.* a:\
copy /y %winbootdir%\command\deltree.* a:\
copy /y %winbootdir%\command\edit.com a:\
copy /y %winbootdir%\command\doskey.* a:\
copy /y %winbootdir%\command\country.sys a:\
copy /y %winbootdir%\command\keyb.com a:\
copy /y %winbootdir%\command\keyboard.sys a:\
echo device=a:\himem.sys > a:\config.sys
echo shell=a:\command.com a:\ /p >> a:\config.sys
echo Country=049,850,a:\country.sys >> a:\config.sys
echo a:\keyb.com gr,,a:\keyboard.sys > a:\autoexec.bat
echo prompt $p$g >> a:\autoexec.bat
echo doskey /insert >> a:\autoexec.bat
echo LCS:100 2 0 1 > \boot.tmp
echo rcx >> \boot.tmp
echo 200 >> \boot.tmp
echo n a:\bootsekt >> \boot.tmp
echo wcs:100 >> \boot.tmp
echo q >> \boot.tmp
echo. >> \boot.tmp
debug < \boot.tmp
del \boot.tmp
goto Over
:Write
if not (%winbootdir%)==() echo Wiederherstellen des Bootsektors nur von Bootdiskette!
if not (%winbootdir%)==() goto Over
echo Achtung: Bootsektor wird von Diskette zurckgeschrieben. OK?
echo Abbrechen mit STRG-C, Fortsetzen mit beliebiger Taste...
pause > nul
echo WCS:100 2 0 1 > \boot.tmp
echo q >> \boot.tmp
echo. >> \boot.tmp
debug a:\bootsekt < \boot.tmp
del \boot.tmp
goto Over
:Help
echo SYNTAX: bs save (Erstellen der Boot-Diskette)
echo bs write (Wiederherstellen von Boot-Diskette)
:Over
dieses am besten in den text editor kopieren und als bs.bat abspeichern,dann kann ein mbr
gesichert werden indem man diese bs.bat aufruft
Gruss vom Alain
..."Zwei Dinge sind unendlich, das Universum und die menschliche Dummheit, aber bei dem Universum bin ich mir noch nicht ganz sicher." (Albert Einstein)