Tôi không thể tải tập lệnh powershell để thực thi trực tiếp tệp bat. Ví dụ, điều này hoạt động trên dòng lệnh:
.\\my-app\my-fle.bat
Khi tôi thêm lệnh này vào một tập lệnh, nó sẽ xuất ra:
The term '.\\my-app\my-file.bat' is not recognized as the
name of a cmdlet, function, script file, or operable program.
Check the spelling of the name, or if a path was included,
verify that the path is correct and try again.
Tôi cũng đã thử những cách sau, với kết quả tương tự:
& .\\my-app\my-fle.bat
& ".\\my-app\my-fle.bat"
\my-app\my-fle.bat
& \my-app\my-fle.bat
& "\my-app\my-fle.bat"
Lưu ý: Nó phải trả về lastexitcode vì tôi cần xác minh sự thành công của hàng loạt.