Is it please possible to run an EXE file under Administrator permissions automatically when a Windows domain (NON-Administrator account) user logs in, and if so, how would I do this?
Asked
Active
Viewed 2,580 times
1 Answers
2
You should just create GPO policy with logon script that starts the your .exe file.
And the script should lock like this if it is Batch script:
"\\Share\YourApp.exe"
Or like this if it is a PowerShell script:
Start-Process -FilePath "\\Share\YourApp.exe"
Your application will be run with elevated premisions.
Zoran Jankov
- 456
