Create new service
sc.exe create <SERVICE-NAME> binPath="<PATH-TO-EXECUTABLE>"
x86_64-w64-mingw32-gcc -mwindows -municode -O2 -s -o simpleService.exe simpleService.c
sc.exe create SimpleService binPath= "C:\Users\Quickemu\Downloads\simpleService.exe"
sc.exe start SimpleService
sc.exe stop SimpleService
sc.exe delete SimpleServiceLast updated