A Simple windows service to shutdown a computer
Caution
Only ever use this on your own machine!
Note
This Service is best paired with the RemoteShutdown App
dotnet build -c Release
sc create RemoteShutdown binPath="C:\Full\Path\To\Service.exe" start=auto obj="LocalSystem"
Feel free to Change the arguments to your own prefrences.
sc start RemoteShutdown
sc stop RemoteShutdown
sc delete RemoteShutdown
Made with ❤️ by yousif51811