I need to distribute some app to all our stations without users having the ability to close the app.
The app jumps on users' screen and notifies them to restart the computer, and I don't want users to be able to close this app through task manager.
Our users all have local admin privileges, and I couldn't find a way to stop them from closing the app.
So I thought to create a service that runs this app and define the service as unstoppable and uninstallable.
I created the service in this way:
sc create "PU-Restart" binPath= "C:\PURrestart\PURrestart.exe"
But when I start the service, I get this error:
Windows could not start the PU-Restart service on Local Computer. Error 1053: The service did not respond to the start or control request in a timely fashion.
I would welcome any help find a solution to it. Thanks Haim