标题:[MDT] 解决 A connection to the deployment share could not be made. The deployment will not proceed. 出处:gOxiA=苏繁=SuFan Blog 时间:Tue, 02 Feb 2010 16:18:14 +0000 作者:gOxiA 地址:https://goxia.maytide.net/read.php/1347.htm 内容: 当执行 MDT2010 的刷新、替换、Sysprep 和 捕获任务时,可能会出现如下的错误警告,这是因为 MDT 不允许同一个用户使用多个用户名连接到服务器或共享资源。 在 MDT 官方 Blog 看到了解决办法需要修改 ZTIUtility.vbs,找到下面的字段范围: 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 然后使用下面的字段进行替换: 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       MapNetworkDriveEx = chr(sDrive)&":"       Exit Function End If End select 此外提供一篇官方的 KB 供大家参考:http://support.microsoft.com/kb/977566/zh-cn,本博也提供一个修改好的 ZTIUtility.vbs 供大家替换。 Generated by Bo-blog 2.1.1 Release