<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
	<id>https://support.qbpro.ru/index.php?action=history&amp;feed=atom&amp;title=Boot_from_iso</id>
	<title>Boot from iso - История изменений</title>
	<link rel="self" type="application/atom+xml" href="https://support.qbpro.ru/index.php?action=history&amp;feed=atom&amp;title=Boot_from_iso"/>
	<link rel="alternate" type="text/html" href="https://support.qbpro.ru/index.php?title=Boot_from_iso&amp;action=history"/>
	<updated>2026-04-03T17:35:47Z</updated>
	<subtitle>История изменений этой страницы в вики</subtitle>
	<generator>MediaWiki 1.38.1</generator>
	<entry>
		<id>https://support.qbpro.ru/index.php?title=Boot_from_iso&amp;diff=671&amp;oldid=prev</id>
		<title>imported&gt;Vix: Новая страница: «'''Creating a bootable Windows PE ISO'''   Download the Windows Automated Installation Kit (WAIK) from Microsoft's website.   Warning: The entire download, KB3AIK…»</title>
		<link rel="alternate" type="text/html" href="https://support.qbpro.ru/index.php?title=Boot_from_iso&amp;diff=671&amp;oldid=prev"/>
		<updated>2013-08-26T19:05:32Z</updated>

		<summary type="html">&lt;p&gt;Новая страница: «&amp;#039;&amp;#039;&amp;#039;Creating a bootable Windows PE ISO&amp;#039;&amp;#039;&amp;#039;   Download the Windows Automated Installation Kit (WAIK) from Microsoft&amp;#039;s website.   Warning: The entire download, KB3AIK…»&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;'''Creating a bootable Windows PE ISO''' &lt;br /&gt;
 Download the Windows Automated Installation Kit (WAIK) from Microsoft's website. &lt;br /&gt;
 Warning: The entire download, KB3AIK_EN.iso, is 1.7GB.&lt;br /&gt;
 Tip: It may be possible to use httpfs to avoid downloading the entire file. Only around 118MB of it is actually needed.&lt;br /&gt;
 Make sure you have the fuse, cdrkit, and cabextract packages installed. &lt;br /&gt;
 Install wimlib from the Arch User Repository. &lt;br /&gt;
 Mount the WAIK ISO. &lt;br /&gt;
 # mkdir /media/waik&lt;br /&gt;
 # mount KB3AIK_EN.iso /media/waik&lt;br /&gt;
Use the mkwinpeimg script provided with wimlib to create a bootable Windows PE ISO &lt;br /&gt;
winpe.iso. See the man page for &lt;br /&gt;
mkwinpeimg for more information. &lt;br /&gt;
 $ mkwinpeimg --iso --waik-dir=/media/waik winpe.iso&lt;br /&gt;
Unmount the WAIK ISO.&lt;br /&gt;
 # umount /media/waik&lt;br /&gt;
Booting Windows PE &lt;br /&gt;
&lt;br /&gt;
After creating a bootable ISO of Windows PE (winpe.iso) as described in the previous section, you may want to boot Windows PE in the following ways: &lt;br /&gt;
 In virtual machine &lt;br /&gt;
&lt;br /&gt;
Run a virtual machine with winpe.iso attached as a CD-ROM. Be sure to give it adequate memory, definitely more than the size of the ISO, since Windows PE runs &lt;br /&gt;
from memory. For example: &lt;br /&gt;
 $ qemu -boot d -m 256 -cdrom svmicro.iso&lt;br /&gt;
 From CD &lt;br /&gt;
&lt;br /&gt;
Simply burn winpe.iso onto a CD, and you can boot from it. Again: beware that if you do this on your Arch Linux machine, you are placing Microsoft's &lt;br /&gt;
closed source operating system in control of your computer. &lt;br /&gt;
 From Network &lt;br /&gt;
&lt;br /&gt;
Windows PE can be booted from the network using PXELINUX and its MEMDISK module. &lt;br /&gt;
Install syslinux and tftp-hpa.&lt;br /&gt;
Copy needed PXELINUX files to the TFTP server root directory. &lt;br /&gt;
 # cp /usr/lib/syslinux/{pxelinux.0,menu.c32,memdisk} /var/tftpboot&lt;br /&gt;
Put winpe.iso in the TFTP server root directory. &lt;br /&gt;
# mv winpe.iso /var/tftpboot&lt;br /&gt;
Create a configuration file for PXELINUX similar to the following:&lt;br /&gt;
 /var/tftpboot/pxelinux.cfg/default&lt;br /&gt;
 UI         menu.c32&lt;br /&gt;
 MENU TITLE Network Boot&lt;br /&gt;
 TIMEOUT    50&lt;br /&gt;
 &lt;br /&gt;
 LABEL      winpe&lt;br /&gt;
 MENU LABEL Boot Windows PE from network&lt;br /&gt;
 KERNEL     /memdisk&lt;br /&gt;
 INITRD     winpe.iso&lt;br /&gt;
 APPEND     iso raw &lt;br /&gt;
 &lt;br /&gt;
 LABEL      localboot&lt;br /&gt;
 MENU LABEL Boot from local disk&lt;br /&gt;
 LOCALBOOT  0&lt;br /&gt;
&lt;br /&gt;
Start the TFTP server. &lt;br /&gt;
# rc.d start tftpd&lt;br /&gt;
Configure your DHCP server (such as Dhcpd or Dnsmasq) to point to pxelinux.0 as the boot file, with the Linux server's IP address. Beware: if your DHCP &lt;br /&gt;
server is on a router, it may not be possible to do this without installing custom firmware.&lt;br /&gt;
&lt;br /&gt;
After completing the above steps, you should be able to boot Windows PE from the network. Warning: With the given PXELINUX configuration file, Windows PE will start by default after 5 seconds. &lt;br /&gt;
 Network boot performance &lt;br /&gt;
&lt;br /&gt;
TFTP is not designed to be used to transfer large files, such as winpe.iso, which may be 118MB or more. Performance may be improved by using the &lt;br /&gt;
 gpxelinux.0 &lt;br /&gt;
 bootloader instead of pxelinux.0 and loading &lt;br /&gt;
 winpe.iso using HTTP rather than TFTP. &lt;br /&gt;
Customizing Windows PE &lt;br /&gt;
&lt;br /&gt;
The mkwinpeimg script provided with wimlib supports making modifications to Windows PE using the &lt;br /&gt;
--start-script or &lt;br /&gt;
--overlay options. See the manual page &lt;br /&gt;
for mkwinpeimg for more information. &lt;br /&gt;
&lt;br /&gt;
You may want to do this to add additional Windows applications that you want to run in Windows PE, or to add any additional drivers that Windows PE needs (drivers can be loaded using the drvload command within Windows PE).&lt;br /&gt;
&lt;br /&gt;
* [https://wiki.archlinux.org/index.php/Windows_PE#Creating_a_bootable_Windows_PE_ISO статья тут]&lt;/div&gt;</summary>
		<author><name>imported&gt;Vix</name></author>
	</entry>
</feed>