|
本帖最后由 key0327 于 2018-12-28 10:18 编辑
ljycslg 的“HTTP网络启动安装原版系统ISO镜像”,已经试过了。
想开始安装时就不用人为再次干预。
另一种方法思路,刚开始构思,查找了一些资料,列出大概流程,不知道对不对。谁有办法可以不用设置用户名密码,尽量少的人为再次干预,或者只是在开始时尽量少的位置设置。
server 端 TinyPxeServer
pxeautorun.txt
net user m:\\ip\pxe "pwd" /user:name
client 端 PE
1、通过tftp将 pxeautorun.txt 复制到%windir%\system32\ 执行
exec =!tftp -i %&ServerAddr% get pxeautorun.txt %windir%\system32\pxeautorun.cmd
wait 500
ifex %windir%\system32\pxeautorun.cmd, exec pxeautorun.cmd %&ServerAddr%
2、执行 imdisk 挂载镜像的脚本
EXEC =!sc create ImDisk binPath= ""%windir%\system32\drivers\imdisk.sys"" type= kernel start= auto error= ignore
EXEC =!sc start ImDisk
install.cmd:
rundll32 setupapi.dll,InstallHinfSection DefaultInstall 132 .\imdisk.inf
net start imdsksvc
net start awealloc
net start imdisk
imdisk -a -f m:\win.iso -m z:
wait 500
z:\setup.exe
|
|