When receiving the error, “A connection to the deployment share (\mdt\DeploymentShare) could not be made.”
The solution is to add a delay to a task sequence.
In the deployment share , scripts folder edit the Litetouch.wsf script.
1
2
3
4
5
6
7
8
9
10
11
|
Function ValidateDeployRootWithRecovery
Dim sARF
Dim sNetworkErrorHint
DIm iRetVal
Dim sLTISuspend
'Delay wait for DHCP
wscript.sleep 5000
If oUtility.ValidateConnectionEx(oEnvironment.Item("DeployRoot"), True) = Success then
ValidateDeployRootWithRecovery = SUCCESS
exit function
End if
|