UAC prompt in Win7 while launching the application shortcut in user account.
I have installed an applicaiton in Windows 7 and in administrator account its working fine, launching all the shortcuts. But in user account while launching the shortcut i am getting UAC prompt. I do not want to disable UAC but sametime want to run the program.
Is there any way to do that?
Answers (3)
Apply RunAsInvoker,RunAsAdmin Shim on target exe using ACT 5.6
Comments:
-
Using RunAsAdmin might not resolve the issue, as it may still require admin privileges to launch the application and present you with a UAC prompt. So try RunAsInvoker. - SilentKiller 12 years ago
-
If you apply RunAsAdmin shim, you dont need to provide admin rights, the target exe will be launched with admin rights automatically by using shim database... - jagadeish 12 years ago
-
Check the following link:
http://technet.microsoft.com/en-us/library/dd638315(v=ws.10).aspx
If an exe runs by right clicking on it and selecting "Run As Administrator", then we can apply RunAsAdmin shim. If you right click on the exe and select "Run As Administrator", it might pop up the credentials windows where you need to fill the Admin credentials. - SilentKiller 12 years ago
By applying the RunasInvoker shim , if the application does not work as expected, the other possible option is to run procmon & identify the possible changes ur app is trying to do to protected resources & then give permissions to those files/folders/registries. Again its no guarantee that it will work but has worked for me a couple of times.
Comments:
-
This approch will not help as UAC prompt will appear though the user is member of Administrators group - jagadeish 12 years ago