欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

QT Creator: The process could not be started!

程序员文章站 2022-06-03 17:59:10
如果往工程里面增加了uac.manifest 文件后,QT creator不通过管理员启动的话,若要debug程序的话,就会提示 “The process could not be started!” uac.manifest文件内容: 解决此问题的办法就是通过管理员方式启动 QT creator即 ......

如果往工程里面增加了uac.manifest 文件后,qt creator不通过管理员启动的话,若要debug程序的话,就会提示 “the process could not be started!”

uac.manifest文件内容:

 1 <?xml version='1.0' encoding='utf-8' standalone='yes'?> 
 2 <assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestversion='1.0'> 
 3 <trustinfo xmlns="urn:schemas-microsoft-com:asm.v3"> 
 4 <security> 
 5 <requestedprivileges> 
 6 <requestedexecutionlevel level='requireadministrator' uiaccess='false' /> 
 7 </requestedprivileges> 
 8 </security> 
 9 </trustinfo> 
10 </assembly>

解决此问题的办法就是通过管理员方式启动 qt creator即可,也可以设置为默认通过管理员方式启动

QT Creator: The process could not be started!