I have a script that generates two reports and many many html files, and I would like to open only two html files with the default browser.
My Powershell script ends as follows:
Invoke-Item C:\Reports\XUReport.htm Invoke-Item C:\Reports\index.htm
My script opens only the first file. What would be the best way to do this?
Swell source share