我正在尝试从 JScript 运行 powershell 脚本。powershell 会弹出,但脚本没有被执行。
下面是示例代码
var WSH = new ActiveXObject("WScript.Shell");
var exec= WSH.Exec("powershell .\test1.ps1");
exec.StdIn.Close();
test1.ps1 是一个创建文本文件的简单脚本。
我正在尝试从 JScript 运行 powershell 脚本。powershell 会弹出,但脚本没有被执行。
下面是示例代码
var WSH = new ActiveXObject("WScript.Shell");
var exec= WSH.Exec("powershell .\test1.ps1");
exec.StdIn.Close();
test1.ps1 是一个创建文本文件的简单脚本。