C# 验证并开放网络
我需要一种简单的方法来在桌面上放置一个快捷方式,单击该快捷方式可将 Windows 资源管理器打开到网络 (\mynetwork) 并进行身份验证。听起来很简单 - ac# 控制台应用程序 - 但我不知道从哪里开始。
i need a simple way to put a shortcut on a desktop that when clicked opens windows explorer to a network (\mynetwork) and authenticates. it sounds like it would be easy - a c# console app - but I am not sure where to start with this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终使用以下命令将登录信息添加到信用管理器:
http://code.msdn.microsoft.com/CSRunProcessAsUser-e4b10d6f/sourcecode?fileId=23561&pathId=1786330904
并使用 process.start 运行 explorer.exe 并提供 \networkaddress
作为 process.start 的 processinfo 的参数
I ended up adding the login info to the cred manager using this:
http://code.msdn.microsoft.com/CSRunProcessAsUser-e4b10d6f/sourcecode?fileId=23561&pathId=1786330904
and running explorer.exe using process.start and supplying the \networkaddress
as args to the processinfo for process.start