从 VB.NET 应用程序打开 plink 窗口而不显示黑色难看的 plink 窗口
我希望在后台从 vb.net 应用程序调用 plink(不显示黑色 plink cmd 屏幕),这可能吗?
I am looking to call plink from a vb.net application in the background (without showing the black plink cmd screen) is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
绝对地。请参阅 dreamincode.net。
基本上,您想要隐藏窗口并重定向标准输入/输出。
然后,您可以使用
p.StandardInput 进行读写
和 [p.StandardOutput][3]
。您还可以在 ProcessStartInfo 类。
Absolutely. See the instructions on dreamincode.net.
Basically, you want to hide the window, and redirect standard in/out.
You can then read and write using
p.StandardInput
and [p.StandardOutput][3]
.You can find more options to set as well in the ProcessStartInfo class.