I've been running into a problem where some of the applications from the startup menu don't actually start upon login. After looking at the list of the applications I've noticed that actually only the exe files that I've set in properties to "Run as administrator" (in compatibility tab) don't run (and also a .cmd file).
How do I run those apps during startup?
Answer
Use the good old Task scheduler approach to start applications with elevated rights at startup.
- start Task Scheduler and create a new task
- mark the checkbox "Run with highest priviligies"
- under action point to the exe you want to run
- give the task a name and save it
create a new shortcut
C:\Windows\System32\schtasks.exe /RUN /TN "MYTASKNAME"
copy this shortcut into the startup folder
There is also a tool called UAC Pass which does all the steps for you.
Comments
Post a Comment