Admin Access
It appears as though the application needs to be run as administrator in Windows 7. Instead of giving users admin access, is there anything that can be done to the package that will allow this application to do what's necessary without giving elevated privileges to the user?
3 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
jagadeish
10 years ago
Posted by:
Badger
10 years ago
depending on what API it is using as to why the app is asking for elevation. The fact that you say it is prompting is a good sign.
To see if the app will run without and elevated session... try setting a the __Compat_Layer variable to RunAsInvoker.
from a CMD
__Compat_Layer=RunAsInvoker
then in that CMD, run the application you want. if it launches OK, your'e golden.
http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx
You can monitor which registry keys and files the program is accessing to make sure you grant the appropriate permissions. - chucksteel 10 years ago