The docs有以下命令:pythoninstall.exe /quiet InstallAllUsers=1 PrependPath=1
但这只是启动后台进程,我想编写脚本并在安装完成后运行其他命令。如何将其作为后台进程运行?
编辑:使用PS结束:Start-Process <path to exe> -NoNewWindow -Wait
答案 0 :(得分:3)
您可以像这样使用START / WAIT:
SELECT xfs.title, xfsp.property_value
FROM xf_style_property xfsp
INNER JOIN xf_style xfs ON xfsp.style_id = xfs.style_id
WHERE xfsp.style_property_id = 5145
答案 1 :(得分:1)
这似乎对我有用:
Start-Process -FilePath ./python-3.7.6-amd64.exe -ArgumentList "/quiet InstallAllUsers=1 PrependPath=1" -NoNewWindow -Wait