I have an application that works in the background, so I've made it as a service application. But the problem is that my application requires administrative rights.
And I'm making this application as a "must-be-running-all-times" (It is for computers in my school's computers, which are for students, and if it is not running, students will be free to do whatever they want). So now you know why I want my service application to run as administrator. Ok now to the point:
If I just tell Windows to run it as administrator in the manifest, it'll show a popup asking whether to run it or not. And some students might click on no, that's the problem, I don't want that popup to show. And for those who say it's not possible, I have an application installed in my computer which doesn't even show the popup (it runs at startup, or maybe before that), and I'm sure that that application is working as an administrator. My question if you missed it:
How do I make my service application start as administrator at startup?
I'll appreciate any help.