This message appears when AQTime starts profiling an application that requires a higher privilege level for the run. Currently, AQTime cannot profile such applications.
To change the privilege level, modify the uiAccess
attribute in the application’s manifest:
-
Launch any text editor as Administrator.
-
Open the application’s manifest in the editor. The manifest file has the name <application.exe>.manifest and is located in the same folder where the application's executable is. The manifest file has the XML format.
-
In the manifest, find the
requestExecutionLevel
element and either delete theuiAccess
attribute, or set it tofalse
:XML
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo> -
Save the changes.