Quote:
Originally Posted by Razor12911
Dragging and dropping never works for apps running on different admin privileges, your app is running with admin privileges, explorer.exe cannot drag anything onto it since it runs with no admin privileges, either explorer.exe gains admin privileges or your program drops admin privileges and runs normally.
|
Heck I had occurred to her to try, but I've never tried it, that dickhead that I have.. Ha..Ha..Ha..
OK solved:...
Code:
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
To
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
...by changing the application level from administrator in to user.
Tested and running in Win10 without making any registry changes.
Thankss Razor.