8

我有一个脚本可以生成两个报告和许多 html 文件,我想用默认浏览器只打开两个 html 文件。

我的 Powershell 脚本完成如下:

Invoke-Item C:\Reports\XUReport.htm
Invoke-Item C:\Reports\index.htm

我的脚本只打开第一个文件。最好的方法是什么?

4

1 回答 1

11

在一个通话和另一个通话中添加一点暂停:

Invoke-Item C:\Reports\XUReport.htm
start-sleep 1
Invoke-Item C:\Reports\index.htm
于 2013-09-17T07:40:55.857 回答