Home > MDT 2010 > MDT 2010 Error: Unable to connect to DeploymentShare

MDT 2010 Error: Unable to connect to DeploymentShare

Suddenly my deployment environment had issues connecting to the deployment share while performing a MDT 2010 LTI Refresh scenario.

Log files BDD.log and LiteTouch.log says this: Unable to connect to DeploymentShare Connection OK Possible cause: invalid credentials A connection to the deployment share DeploymentShare could not be made The deployment will not proceed.

Error:

errDeploymentShare

I found some solutions on the web, but only the last one did the trick for me.

Possible solution: Change ZTIUtility.vbs

Microsoft posted a solution for the ‘Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed” problem with MDT 2010. By changing the script ZTIUtility.vbs.

Replace this code:

Case Else
' Case &h800704C3 ' Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed.
' Case &h8007052E ' Logon failure: unknown user name or bad password.
' There was a some kind of fatal error.
If ErrDesc <> "" then
             MapNetworkDriveEx = ErrDesc
Else
             MapNetworkDriveEx = "Unable to map UNC Path " & sShare & " :" & "( 0x" & hex(HasError) & " ) "
End if
oLogging.CreateEntry MapNetworkDriveEx & "", iLogType
Exit function
End select

With this code:

Case Else
Err.Clear
On Error Resume Next
oNetwork.MapNetworkDrive  chr(sDrive)&":", sShare, False
HasError = err.number
ErrDesc = err.Description
On Error Goto 0
If Err.Number <> 0 Then
' There was a some kind of fatal error.
             If ErrDesc <> "" then
                                        MapNetworkDriveEx = ErrDesc
             Else
                                        MapNetworkDriveEx = "Unable to map UNC Path " & sShare & " :" & "( 0x" & hex(HasError) & " ) "
             End if
             oLogging.CreateEntry MapNetworkDriveEx & "", iLogType
                           Exit function
Else
      Exit Function
End If
End select

However, this didn’t solved my issue at all.  I tried some other possible fixes found on the wild wild web; like using the pushd-command, using the IP address and FQDN name, and disconnecting all network connections (with net use * /d) before the actual installation begins. But none of this actually solved my issue.

The solution was map a network drive to the deployment share, with the same credentials as these used in bootstrap.ini and launching Litetouch.vbs from there. I found the solution on the Minasi forum (post by Johan Arwidmark).

Categories: MDT 2010 Tags: ,
  1. Ravi
    September 21st, 2010 at 20:04 | #1

    I am using MDT 2010 Update 1. I am trying to refresh my lab XP machine running on Vmware ESXi 4.1 to Windows 7 64-bit. I execute the litetouch.vbs, on reboot it loads PE, but errors out

    “A connection to the deployment share \\servername\shar-name could not be made. The following networking device did not have a driver installed.

    I checked the bdd.log, it says “Nit networking adapaters found, the network drivers for your device are not present.”

    I hit F8 to check, and did ipconfig, no IP was received. Mapping the share as drive locally aslo gave the same error.

    Should I inject the drivers in PE?

  2. Ben De Vriese
    September 23rd, 2010 at 17:02 | #2

    Probably your virtual machine is lacking network adapter drivers.
    Try to import these drivers: http://www.the-d-spot.org/wordpress/tag/vmware/

    Like you said, inject these NIC drivers in the WinPE boot image.

  1. No trackbacks yet.