gpt4 book ai didi

powershell - 在 HTA 中获取 PowerShell 脚本的输出

转载 作者:行者123 更新时间:2023-12-03 16:47:18 25 4
gpt4 key购买 nike

我试图从 HTML 应用程序 [HTA] 调用一个 powershell 脚本:

Set WshShell = CreateObject("WScript.Shell")

Set retVal = WshShell.Exec("powershell.exe C:\PS_Scripts\test.ps1")

test.ps1 只返回进程计数的地方
return (Get-Process).Count

我想获取此 powershell 脚本的输出,然后将其存储在局部变量中或在 HTA 上显示。如何才能做到这一点 ?

我尝试使用:
retVal.StdIn.Close()

result = retVal.StdOut.ReadAll()


alert(result)

但打印的结果值为空。

请帮助我如何实现这一目标。

最佳答案

这对我有用:

测试.ps1:

(Get-Process).Count | Out-File c:\temp\output.txt -Encoding ascii

测试.hta:
<head>
<title>HTA Test</title>
<HTA:APPLICATION
APPLICATIONNAME="HTA Test"
SCROLL="yes"
SINGLEINSTANCE="yes"
WINDOWSTATE="maximize"
</head>
<script language="VBScript">
Sub TestSub

Set WshShell = CreateObject("WScript.Shell")
return = WshShell.Run("powershell.exe -ExecutionPolicy Unrestricted -File test.ps1", 0, true)
Set fso = CreateObject("Scripting.FileSystemObject")
Set file = fso.OpenTextFile("c:\temp\output.txt", 1)
text = file.ReadAll
alert(text)
file.Close
End Sub
</script>
<body>
<input type="button" value="Run Script" name="run_button" onClick="TestSub"><p>
</body>

关于powershell - 在 HTA 中获取 PowerShell 脚本的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35198533/

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