How install to HDD from Win7X64?

Started by woofer, July 23, 2011, 21:49:23 PM

Previous topic - Next topic

woofer

How I can install the Plop Bootmanager from a X64 PC?

Windows say´s... it is only for 32bit PC´s?!

thx for help :)

Elmar


woofer

My mistake! It´s work fine.
I create a smal Batch vor auto Install (Win7\Vista), but only in German sorry....

Plop_install_win7.bat
@echo off
set Path = c:
if exist c:\plop\plpgenbtldr.exe goto NEXT
Goto ERROR1

:NEXT

if exist c:\plop\plpbt.bin goto CREATE
goto ERROR2

:CREATE
set id=""
bcdedit /create /d "PLoP Boot Manager" /application bootsector >> c:\plop\id.txt
FOR %%e in (0 1 2 3 4 5 6 7 8 9) do IF Errorlevel %%e set EL=%%e
    IF errorlevel 1 goto ERROR3
    goto ID_AUSLESEN

:ID_AUSLESEN
@FOR /F "eol=; tokens=3* usebackq delims=, " %%i in ("c:\plop\id.txt") do @(
   @set id=%%i
    )
@echo Info_ Deine ID lautet :%id%
goto INSTALL
pause

:INSTALL
bcdedit /set %id% device boot
bcdedit /set %id% path \plop\plpbtldr.bin
bcdedit /displayorder %id% /addlast
goto FERTIG

:ERROR1
Echo Fehler: Datei c:\plop\plpgenbtldr.exe fehlt!
Goto ABBRUCH

:ERROR2
Echo Fehler: Datei c:\plop\plpbt.bin fehlt!
Echo Rename plpinstc.com in plpbt.bin
Goto ABBRUCH

:ERROR3
echo Fehler: Batch Datei muss mit Administrations-Rechte gestartet werden!
echo Und muss aus dem Windows Explorer heraus gestartet werden.
echo Nicht Totalcommander etc....
goto ABBRUCH

:FERTIG
echo Fertig
bcdedit /v

:ABBRUCH
pause