我试图使用批处理文件中的-command
参数调用powershell脚本。 powershell脚本接受可能包含空格的参数。该命令无法接受带空格的参数。
这里有批处理文件。
@echo off
set arg1=%*
call powershell.exe -ExecutionPolicy Bypass -command ".\build.ps1 %arg1%; exit $LASTEXITCODE"
exit /b %ERRORLEVEL%
这是批处理文件的调用方式 - .\build.bat '-testToolPath=as sdaf'
我使用-command
代替-file
只是为了返回LASTEXITCODE
答案 0 :(得分:0)
您是否尝试使用转义双引号?
call powershell -ExecutionPolicy Bypass -command ".\build.ps1 ^"%arg1%^"; exit $LASTEXITCODE"
也许您必须先删除其他引号:
set "arg1=%arg1:'=%"