Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| — | anwenderwiki:pxe-windows [2016/02/13 00:25] (aktuell) – angelegt - Externe Bearbeitung 127.0.0.1 | ||
|---|---|---|---|
| Zeile 1: | Zeile 1: | ||
| + | {{tag> PXE Grub}} | ||
| + | ====== Windows per PXE-Grub booten ====== | ||
| + | |||
| + | Die Datei muss unter **''/ | ||
| + | |||
| + | Punkt 1 startet Windows 7 unter Verwendung einer **'' | ||
| + | |||
| + | Punkt 2 startet Windows 7 mit direkter Ansteuerung des Windows-Boot-Loaders **'' | ||
| + | |||
| + | Punkt 3 startet Windows 7 mit direkter Ansteuerung des GRUB-Boot-Loaders **'' | ||
| + | < | ||
| + | DEFAULT / | ||
| + | # nach Ablauf des Timeouts wird Windows 7 gebootet. | ||
| + | ONTIMEOUT win7 | ||
| + | PROMPT 0 | ||
| + | # STARTE win7 nach 5 Sek. Untaetigkeit, | ||
| + | TIMEOUT 50 | ||
| + | # starte auf jeden Fall das Defaultsystem nach 10 Sek., | ||
| + | # auch wenn der Anwender den Autostart unterbrochen hat. | ||
| + | TOTALTIMEOUT 100 | ||
| + | KBDMAP /german.kbd | ||
| + | DISPLAY /boot.msg | ||
| + | # verbietet die Aenderung der APPEND-Zeile | ||
| + | ALLOWOPTIONS 0 | ||
| + | |||
| + | # Layout-Definitionen fuer das Menue | ||
| + | MENU AUTOBOOT Automatischer Start von Windows 7 in # Sekunde{n}... | ||
| + | MENU BACKGROUND /logo.16 | ||
| + | MENU TITLE Boot-Menue der Gruppe itg FSCL | ||
| + | MENU color title 1; | ||
| + | MENU color sel 7; | ||
| + | MENU color hotsel 1; | ||
| + | MENU WIDTH 80 | ||
| + | MENU MARGIN 10 | ||
| + | MENU ROWS 12 | ||
| + | MENU ENDROW 24 | ||
| + | MENU TIMEOUTROW 18 | ||
| + | MENU VSHIFT 2 | ||
| + | |||
| + | # direkter Start des Windows 7 Systems aus der 1. Partition mit config-File | ||
| + | LABEL win7 | ||
| + | MENU LABEL ^1. Windows 7 - Start | ||
| + | KERNEL grub.exe | ||
| + | APPEND keeppxe --config-file=pxe basedir /; default 0; timeout 0; hiddenmenu; title Partition 1; configfile (hd0, | ||
| + | |||
| + | # direkter Start des Windows 7 Systems aus der 1. Partition ohne config-File | ||
| + | LABEL win7a | ||
| + | MENU LABEL ^2. Windows 7 - Start direkt mit bootmgr | ||
| + | KERNEL grub.exe | ||
| + | APPEND keeppxe --config-file=pxe basedir /; default 0; timeout 0; hiddenmenu; title Partition 1; root(hd0, | ||
| + | |||
| + | # direkter Start des Windows 7 Systems aus der 1. Partition ohne config-File | ||
| + | LABEL win7b | ||
| + | MENU LABEL ^3. Windows 7 - Start direkt mit grldr | ||
| + | KERNEL grub.exe | ||
| + | APPEND keeppxe --config-file=pxe basedir /; default 0; timeout 0; hiddenmenu; title Partition 1; root(hd0, | ||
| + | |||
| + | # LINBO-PXE-Boot ohne Autostart eines Systems | ||
| + | LABEL linbo | ||
| + | MENU LABEL ^4. LINBO PXE | ||
| + | KERNEL linbo | ||
| + | APPEND initrd=linbofs.lz vga=788 dhcpretry=5 quiet autostart=0 | ||
| + | |||
| + | |||
| + | </ | ||