我设置了一个 PXE 服务器,并用它来通过网络为一些工具和实时系统提供服务(设置Debian Wheezy,tftpd-hpa,DHCP服务器和nfs 内核服务器)并希望部署 Windows 安装映像(使用威克+自动无人值守文件) 在该 PXE 服务器上。
据我所知,我确实需要一个温湿度记录仪启动安装,这需要交互。
有没有办法直接引导并启动映像或自动启动 WinPE 和安装?
通过 PXE 运行 WinPE 没有问题。
答案1
是的,您可以使用 WinPE 来完成。
有一个名为的文件startnet.cmd
将在 WinPE 启动时运行。只需根据需要编辑此批处理文件即可。
一个简单的例子是:
wpeinit
net use z: \\server\share /u:domain\user password
diskpart /s format.txt
dism /apply-image /imagefile:z:\customimage.wim /index:1 /applydir:w:\
bcdboot w:\windows /s w:\
exit
format.txt 的内容为:
sel dis 0
clean
cre par pri
for fs=ntfs quick
assign letter=W
active
exit
为了编辑startnet.cmd:
- 将 \sources\boot.wim 挂载到临时文件夹。假设是 C:\temp
- 打开
C:\Temp\Windows\System32\startnet.cmd
并编辑内容。也format.txt
应该在这个文件夹中。 - 卸载并提交更改。