10 lines
203 B
Batchfile
10 lines
203 B
Batchfile
@echo off
|
|
|
|
rem Stop and delete the legacy SunshineSvc service
|
|
net stop sunshinesvc
|
|
sc delete sunshinesvc
|
|
|
|
rem Stop and delete the new ApolloService service
|
|
net stop ApolloService
|
|
sc delete ApolloService
|