gpt4 book ai didi

asp.net - 运行进程时隐藏 vb.net 中的命令窗口

转载 作者:行者123 更新时间:2023-12-02 14:37:49 26 4
gpt4 key购买 nike

如果我有这个代码

    ' Send file to Unix server via pscp
Dim Proc As New System.Diagnostics.Process
Proc.StartInfo = New ProcessStartInfo("C:\Windows\System32\cmd.exe")
Proc.StartInfo.Arguments = "/C C:\pscp.exe -pw " & PASSWORD & " " & physicalFolder & "\" & UNIXSCRIPTNAME & " " & unixLogin
Proc.StartInfo.RedirectStandardInput = True
Proc.StartInfo.RedirectStandardOutput = False
Proc.StartInfo.UseShellExecute = False
Proc.Start()
' Allows script to execute sequentially instead of simultaneously
Proc.WaitForExit()

如何才能使命令窗口在执行时不出现?谢谢!

最佳答案

您可以通过将 CreateNoWindow 设置为 true 来做到这一点,这可能会有所帮助 MSDN

Proc.StartInfo.CreateNoWindow = true

关于asp.net - 运行进程时隐藏 vb.net 中的命令窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11781600/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com