I have an applicaiton created in appv 4.6 SP1, enforced security descriptors is unchecked.
My pc is windows 7 SP1 with UAC enabled.
But when I try to start the application I get an error that I do not have the necessary permissions for this action.
The only way I was able to solve this issue was deleting the security part in the manifest file or changing the value uiaccess to false belonging to the executable.
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" uiAccess="true"> </requestedExecutionLevel>
</requestedPrivileges>
But in that case some functionality (keystrokes) do not work anymore. (keystroke button, with alt key)
What I did also tried
- When I set enableuipi=0 then it works again.
But this gives a problem in ie9 and 10 (bug has been logged for it)
- shimming runasinvoker does not make a difference.
So I think I have two options:
1. find out why I get the "no privilige" message
2. find a way to enable uiaccess out of the bubble only for the application. (does a shim exist?)
I hope someone has already encountered something similar.
Tom