从 VB.NET 应用程序打开 plink 窗口而不显示黑色难看的 plink 窗口

发布于 2024-11-25 05:41:11 字数 60 浏览 1 评论 0原文

我希望在后台从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少钕鈤記 2024-12-02 05:41:11

绝对地。请参阅 dreamincode.net

基本上,您想要隐藏窗口并重定向标准输入/输出。

Dim p as New Process
With p.StartInfo
    .WindowStyle=ProcessWindowStyle.Hidden
    .RedirectStandardOutput=true
    .RedirectStandardInput=true
End With

然后,您可以使用 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.

Dim p as New Process
With p.StartInfo
    .WindowStyle=ProcessWindowStyle.Hidden
    .RedirectStandardOutput=true
    .RedirectStandardInput=true
End With

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文