gpt4 book ai didi

excel - 执行脚本时隐藏powershell窗口

转载 作者:行者123 更新时间:2023-12-02 11:54:51 33 4
gpt4 key购买 nike

我是使用 Powershell 和脚本的新手..在脚本文件中,有一些我想运行的简单命令,一切正常

Sub TestUDF()
MsgBox ScriptFile
End Sub

Function ScriptFile() As String
Dim wshShell As Object
Dim wshShellExec As Object
Dim strCommand As String
Dim strOutput As String

strCommand = "Powershell -File ""C:\Users\Future\Desktop\Test.ps1"""
Set wshShell = CreateObject("WScript.Shell")
Set wshShellExec = wshShell.Exec(strCommand)
strOutput = wshShellExec.StdOut.ReadAll

ScriptFile = strOutput
End Function

我的问题是,运行代码时,powershell 窗口会出现两秒钟。如何隐藏它以便根本不显示该窗口?

最佳答案

您可以在命令中添加一个附加参数来调用 PowerShell 以保持窗口隐藏。将 strCommand 调整为如下所示:

strCommand = "Powershell -WindowStyle Hidden -File ""C:\Users\Future\Desktop\Test.ps1"""

关于excel - 执行脚本时隐藏powershell窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57352438/

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