我正在使用以下 Sub 将参数传递给 Powershell。
Sub testpower()
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run ("Powershell.exe -file .\test.ps1 -path ""Shell.txt"" ")
End Sub
但是,在VB中运行时不会生成输出,但是如果尝试直接从运行命令运行,它会给出所需的结果。请帮助。
test.ps1 脚本:
Param([String]$path)
Get-AuthenticodeSignature $path | Out-File "C:\Documents and Settings\acmeuser1\output.txt"