Home
Docu
Projects
Links
Admin
Impressum

 


 

Clone W2k/XP with different Boards/Chipsets

Klonen - Spezialtipps

1

Klonen von PC’s mit verschiedenen Mainboards

Die nachgeschobenen Systemdateien sind beim Klonen auf nicht mainboard-idente Computer notwendig, da diese Einträge nach dem Installieren von w2k oder wxp gelöscht werden.

weitere Informationen siehe unten!

Schritte vor dem Clonevorgang auf dem zu Source-Computer:

(1) patch „nur_merge.bat“ ausführen von a:

a) sys-dateien werden in c:\winnt\system32\drivers kopiert

b) regedit wird geändert

Vorraussetzung:

Daten und merge.bat auf diskette/verzeichnis!

verzeichnis für treiber wie oben im pfad beschrieben (c:\winnt\system32\drivers) / sys-dateien systemkonform (mitgeschickte Dateien aus W2k)

(2) patch “mergeIDE.bat“ (= orginal-patch)

patch läuft automatisch ab

voraussetzungen beachten! (cd-rom pfad der systemcd, ...)

set ctdir=%SystemRoot%\Driver Cache\i386

:tryit

if exist "%ctdir%\driver.cab" goto isda

echo *** Datei %ctdir%\Driver.cab nicht gefunden ***

echo.

echo Bitte legen Sie Ihre Windows-XP-Installations-CD ein und rufen Sie danach

echo dieses Programm erneut auf, wobei Sie den Laufwerksbuchsten Ihres CD-ROM-

echo Laufwerks als Parameter angeben. Der Befehl sollte also beispielsweise

echo.

echo %0 D

echo.

echo lauten, wobei Sie das D gegebenenfalls durch den Laufwerksbuchstaben

echo Ihres CD-ROM-Laufwerks (ohne Doppelpunkt) ersetzen müssen.

echo.

goto raus

:isda

echo Extrahiere Treiberdateien...

expand>NUL "%ctdir%\driver.cab" -f:Atapi.sys "%SystemRoot%\System32\Drivers"

if errorlevel 1 goto fehler1

expand>NUL "%ctdir%\driver.cab" -f:Intelide.sys "%SystemRoot%\System32\Drivers"

if errorlevel 1 goto fehler1

expand>NUL "%ctdir%\driver.cab" -f:Pciide.sys "%SystemRoot%\System32\Drivers"

if errorlevel 1 goto fehler1

expand>NUL "%ctdir%\driver.cab" -f:Pciidex.sys "%SystemRoot%\System32\Drivers"

MS-Info zum Thema!

http://support.microsoft.com/default.aspx?scid=kb;en-us;Q314082

kurzauszug:

You Receive a Stop 0x0000007B Error After You Move the Windows XP System Disk to Another Computer

The information in this article applies to:

· Microsoft Windows XP Home Edition

· Microsoft Windows XP Professional

This article was previously published under Q314082

For a Microsoft Windows 2000 version of this article, see 271965.

SYMPTOMS

After you move the system (boot) disk to a backup computer, you may receive the following Stop error when you try to start the Windows-based backup computer:

STOP: 0x0000007B (0xF741B84C,0xC0000034,0x00000000,0x00000000)
INACCESSIBLE_BOOT_DEVICE

CAUSE

This error can occur if the registry entries and drivers for the mass storage controller hardware in the backup computer are not installed in Windows.

For integrated device electronics (IDE) controllers, there are several different chip sets available, such as Intel, VIA, and Promise. Each chip set has a different Plug-n-Play identifier (PnP-ID).

The PnP-ID information of mass storage controllers for the backup computer must be in the registry before startup so that Windows can initialize the correct drivers.

receiving the Stop 0x0000007B error. However, other hardware differences might result in other problems.

1. Copy the following information into Notepad, and then save the file on a 3.5-inch disk. Name the file Mergeide.reg, without the .txt file name extension.
********** Start copy here **********
********** End copy here **********

2. Extract the Atapi.sys, Intelide.sys, Pciide.sys, and Pciidex.sys files from the %SystemRoot%\Driver Cache\I386\Driver.cab file, or copy the files to the %SystemRoot%\System32\Drivers folder.

3. In Windows Explorer, right-click the Mergeide.reg file in the floppy drive, and then click Merge. Windows displays the following message:

Are you sure you want to add the information in A:\Mergeide.reg to the registry?

Click Yes.

After the import process is completed, Windows displays another message:

Information from A:\Mergeide.reg was successfully entered into the registry.

1. Shut down Windows, turn off the computer, and then move the system disk to the other test computer, the one that previously produced a Stop 0x0000007B error, and then see whether you can successfully start the second computer.

mergeide.bat


---------------------------------------------------
@echo off
if "%1"=="" goto noarg
set ctdir=%1:\i386
goto tryit

:noarg
set ctdir=%SystemRoot%\Driver Cache\i386

:tryit
if exist "%ctdir%\driver.cab" goto isda
echo *** Datei %ctdir%\Driver.cab nicht gefunden ***
echo.
echo Bitte legen Sie Ihre Windows-XP-Installations-CD ein und rufen Sie danach
echo dieses Programm erneut auf, wobei Sie den Laufwerksbuchsten Ihres CD-ROM-
echo Laufwerks als Parameter angeben. Der Befehl sollte also beispielsweise
echo.
echo %0 D
echo.
echo lauten, wobei Sie das D gegebenenfalls durch den Laufwerksbuchstaben
echo Ihres CD-ROM-Laufwerks (ohne Doppelpunkt) ersetzen müssen.
echo.
goto raus

:isda
echo Extrahiere Treiberdateien...
expand>NUL "%ctdir%\driver.cab" -f:Atapi.sys "%SystemRoot%\System32\Drivers"
if errorlevel 1 goto fehler1
expand>NUL "%ctdir%\driver.cab" -f:Intelide.sys "%SystemRoot%\System32\Drivers"
if errorlevel 1 goto fehler1
expand>NUL "%ctdir%\driver.cab" -f:Pciide.sys "%SystemRoot%\System32\Drivers"
if errorlevel 1 goto fehler1
expand>NUL "%ctdir%\driver.cab" -f:Pciidex.sys "%SystemRoot%\System32\Drivers"
if errorlevel 1 goto fehler1
echo Erledigt.
echo Eintragen der Registry-Settings...
regedit -s MergeIDE.reg
if errorlevel 1 goto fehler2
echo Erledigt.
goto raus

:fehler1
echo Fehler beim Extrahieren der Treiberdateien
goto raus

:fehler2
echo Fehler beim Eintragen der Registry-Settings
goto raus
:raus
set ctdir=
-------------------------------------


nur_merge.bat


-------------------------------------

echo kopieren der Treiber...
copy daten\Atapi.sys c:\winnt\system32\drivers
copy daten\Intelide.sys c:\winnt\system32\drivers
copy daten\Pciide.sys c:\winnt\system32\drivers
copy daten\Pciidex.sys c:\winnt\system32\drivers

echo Eintragen der Registry-Settings...
regedit -s daten\MergeIDE.reg
if errorlevel 1 goto fehler1
echo Erledigt.
goto raus

:fehler1
echo Fehler beim Eintragen der Registry-Settings
goto raus

:raus
----------------------------------------

mergeIDE.reg


********** Start copy here ********

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\primary_ide_channel]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="atapi"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\secondary_ide_channel]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="atapi"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\*pnp0600]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="atapi"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\*azt0502]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="atapi"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\gendisk]
"ClassGUID"="{4D36E967-E325-11CE-BFC1-08002BE10318}"
"Service"="disk"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#cc_0101]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="pciide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_0e11&dev_ae33]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="pciide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_1039&dev_0601]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="pciide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_1039&dev_5513]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="pciide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_1042&dev_1000]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="pciide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_105a&dev_4d33]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="pciide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_1095&dev_0640]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="pciide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_1095&dev_0646]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="pciide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_1095&dev_0646&REV_05]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="pciide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_1095&dev_0646&REV_07]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="pciide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_1095&dev_0648]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="pciide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_1095&dev_0649]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="pciide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_1097&dev_0038]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="pciide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_10ad&dev_0001]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="pciide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_10ad&dev_0150]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="pciide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_10b9&dev_5215]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="pciide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_10b9&dev_5219]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="pciide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_10b9&dev_5229]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="pciide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_1106&dev_0571]
"Service"="pciide"
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_8086&dev_1222]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="intelide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_8086&dev_1230]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="intelide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_8086&dev_2411]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="intelide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_8086&dev_2421]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="intelide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_8086&dev_7010]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="intelide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_8086&dev_7111]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="intelide"

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CriticalDeviceDatabase\pci#ven_8086&dev_7199]
"ClassGUID"="{4D36E96A-E325-11CE-BFC1-08002BE10318}"
"Service"="intelide"

;Add driver for Atapi (requires Atapi.sys in Drivers directory)

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\atapi]
"ErrorControl"=dword:00000001
"Group"="SCSI miniport"
"Start"=dword:00000000
"Tag"=dword:00000019
"Type"=dword:00000001
"DisplayName"="Standard IDE/ESDI Hard Disk Controller"
"ImagePath"=hex(2):53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,44,00,\
  52,00,49,00,56,00,45,00,52,00,53,00,5c,00,61,00,74,00,61,00,70,00,69,00,2e,\
  00,73,00,79,00,73,00,00,00

;Add driver for intelide (requires intelide.sys in drivers directory)

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\IntelIde]
"ErrorControl"=dword:00000001
"Group"="System Bus Extender"
"Start"=dword:00000000
"Tag"=dword:00000004
"Type"=dword:00000001
"ImagePath"=hex(2):53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,44,00,\
  52,00,49,00,56,00,45,00,52,00,53,00,5c,00,69,00,6e,00,74,00,65,00,6c,00,69,\
  00,64,00,65,00,2e,00,73,00,79,00,73,00,00,00


;Add driver for Pciide (requires Pciide.sys and Pciidex.sys in Drivers directory)

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PCIIde]
"ErrorControl"=dword:00000001
"Group"="System Bus Extender"
"Start"=dword:00000000
"Tag"=dword:00000003
"Type"=dword:00000001
"ImagePath"=hex(2):53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,44,00,\
  52,00,49,00,56,00,45,00,52,00,53,00,5c,00,70,00,63,00,69,00,69,00,64,00,65,\
  00,2e,00,73,00,79,00,73,00,00,00
					
********** End copy here **********
Get Firefoxnotcpa