在premake postbuildcommands中,我想运行python脚本,我需要以admin身份运行它。
postbuildcommands { 'powershell -Command \"Start-Process powershell -Verb RunAs\" python.exe .\\util\\make_links.py'}
但是我收到此错误消息。好像python是作为参数传递的?感谢您的帮助。
1>Start-Process : A positional parameter cannot be found that accepts argument 'python.exe'.
1>At line:1 char:1
1>+ Start-Process powershell -Verb RunAs / python.exe .\util\make_links.p ...