Nice idea. If you dont mind though, I'd like to suggest a way to integrate both the start and stop services BATCH files into one single BATCH file.
The batch file bellow basically just add's an option to either start or stop the services. It also make your "program" look a little slicker.:)
TITLE Service Manager
COLOR 1F
@ ECHO OFF
:start
CLS
ECHO.
ECHO ***********************
ECHO * Service Manager *
ECHO * ----------------- *
ECHO ***********************
ECHO.
ECHO.
ECHO Please choose from the folowing options...
ECHO.
ECHO 1: Enable Update Services
ECHO 2: Disable Update Services
ECHO 3: Exit program
echo.
SET /P choice=CHOICE:
if %choice% equ 1 goto StartServ
if %choice% equ 2 goto StopServ
if %choice% equ 3 (EXIT) else (
ECHO.
ECHO Error "%CHOICE%" is not an option. Please try again...
PAUSE
GOTO start
)
:StartServ
sc config wuauserv start= auto
sc config BITS start= auto
sc config ERSvc start= auto
sc start wuauserv
sc start BITS
sc start ERSvc
start %SystemRoot%\system32\wupdmgr.exe
EXIT
:StopServ
sc config wuauserv start= disabled
sc config BITS start= demand
sc stop wuauserv
sc stop BITS
EXIT