Run an EXE as Administrator on windows domain PCs at login silently

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?


You should just create GPO policy with logon script that starts the your .exe file.

enter image description here

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.