How can I edit boot.wim to run a command when used in WDS?
what i'd either delay setup's execution (giving nic time obtain ip) or add ipconfig /renew command in somewhere executed before setup ran. attempted add command call startnet.cmd file of mounted boot.wim image before commiting didn't solve anything.
does have idea how can go doing this?
hello,
i think can try putting following entries in front of "\sources\setup.exe /wds /wdsdiscover /wdsserver:wds-server.ddpo.local" line:
ping <ip address>
pause
ping <ip address>
pause
…
you need interactive commands in windows pe in scenario. if want process achieved more automatically, can try command "ping <ip address> -n [count]" in front of setup.exe line. should adjust [count] large number there enough time network initialized. in way, winpeshl.ini file should like:
ping <ip address> -n 100
\sources\setup.exe /wds /wdsdiscover /wdsserver:wds-server.ddpo.local
…
i hope helps.
best regards,
chang yin
Windows Server > Setup Deployment
Comments
Post a Comment