如果你的更新路径是 ftp 的,说明你路径的 用户名、密码错误;
如果你的更新路径是 共享文件夹 的,那应该是你还没有登陆那台电脑导致无法访问目录,要在BeforeOpenPorject写下面代码
Dim p As new Process()
p.StartInfo.FileName = "cmd.exe"
p.StartInfo.UseShellExecute = False '关闭Shell的使用
p.StartInfo.RedirectStandardInput = True '重定向标准输入
p.StartInfo.RedirectStandardOutput = True '重定向标准输出
p.StartInfo.RedirectStandardError = True '重定向错误输出
p.StartInfo.CreateNoWindow = True '设置不显示窗口
p.Start()
p.StandardInput.WriteLine( "net use \\10.17.48.203\ 密码 /user:用户名")
p.StandardInput.WriteLine("exit")