Changes between Version 2 and Version 3 of opsi/winpe
- Timestamp:
- Jun 6, 2013, 11:35:11 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
opsi/winpe
v2 v3 15 15 see http://download.uib.de/opsi4.0/doc/html/opsi-getting-started/opsi-getting-started.html#opsi-getting-started-firststeps-osinstall-fill-base-packages-nt6 16 16 17 Alternativly use following commands: 18 19 Install Windows WAIK 20 21 {{{ 22 c: 23 24 rem Create Initial winpe directory 25 c:\Program Files\Windows AIK\Tools\PETools\copype.cmd amd64 c:\winpe64 26 27 copy c:\winpe64\winpe.wim c:\winpe64\ISO\sources\boot.wim 28 29 rem Mount and modify WinPE boot image 30 31 cd c:\winpe64 32 dism /Get-WIMInfo /WimFile:C:\winpe64\ISO\sources\boot.wim 33 34 dism /cleanup-wim 35 36 dism /Mount-Wim /WimFile:C:\winpe64\ISO\sources\boot.wim /index:1 /MountDir:C:\winpe64\mount 37 38 type C:\winpe64\mount\Windows\System32\startnet.cmd 39 echo c:\opsi\startnet.cmd > C:\winpe64\mount\Windows\System32\startnet.cmd 40 41 dism /unmount-Wim /MountDir:C:\winpe64\mount /Commit 42 }}} 43 44 45 Copy ISO subdirectory as winpe Directory to OPSI server: 46 47 {{{ 48 cp ISO/. /var/lib/opsi/depot/win*\winpe/. 49 }}} 50 51 Hint: The boot.wim file is also accessable by the 7z archiving programm (at least for WinPE versions <4.0) 52 17 53 == WinPE 4.0 == 54 55 Currently this is not supported by OPSI. Modifying this images works, but driver integration fails (create_driver_links.py tries to extract drivers using 7z, which does not work for WinPE >= 4.0). 18 56 19 57 === Modify WinPE for OPSI === … … 50 88 51 89 dism /unmount-Wim /MountDir:C:\winpe\mount /Commit 90 }}} 52 91 53 92 54 rem Copy media subdirectory as winpe Directory to OPSI server55 93 94 Copy media subdirectory as winpe Directory to OPSI server: 95 96 {{{ 56 97 cp media/. /var/lib/opsi/depot/win*\winpe/. 57 98 }}}