Is there a good way to make a LTI installation wait for an ip address before its trying to start the installation wizard?
I currently get errors when i boot my PEimg that only says the network path to the deployment share is unavailable. ipconfig in the cmd.. I've got no IP :( ipconfig /renew gets me a valid ip-address though.
I'm using Microsoft Deployment Toolkit, WAIK 2008 sp1, server 2008 Deployment services.
I had the same problem using a Discovery WinPE CD with WDS.
Here's how I fixed it (same solution should work for you):
Save, close, unmount and commit the image: (imagex /unmount /commit {mounterDir})
Here's a script I call at the end of startnet.cmd. The goal here is to connect to \\MYSERVER\MYSHARE and run a menu script stored there. If the script can't be found I release and renew my IP address and try again.
Here's a ping to provoke name resolution,
Here's the logon attempt from WinPE to the server,
If I can't see the menu script, then I release and renew and try again,
Thanks for all your answers! I was over at TrueSec(LabCenter) yesterday on a deployment seminar and got some nice tips. then after some more googling i found this
www.deployvista.com
This seems to me the most correct way of dealing with the issue.
startnet.cmd:
After 10 retrys it seems to work flawless for me. Hope this will make things easier for you to!