以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 用户名或密码不正确 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=129213) |
-- 作者:chaomoshou -- 发布时间:2018/12/24 11:44:00 -- 用户名或密码不正确 设置双击自动打开局域网的某个目录,在其他机器上没问题,但有台win10系统的机器,会提示“用户名或密码不正确。”
.NET Framework 版本:2.0.50727.8937 |
-- 作者:有点甜 -- 发布时间:2018/12/24 11:47:00 -- 你这个共享文件夹,是否设置账号密码,需要输入才能进入的?
如果设置账号密码,先执行这段代码后,再测试试试
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 * /del /y")
p.StandardInput.WriteLine( "net use \\\\192.168.0.12 123456 /user:admin")
p.StandardInput.WriteLine("exit")
|