Batch File Commands To Open Multiple CPL
Batch File Commands To Open Multiple CPL
echo *******************************
echo "Created By Vinod Kodammuriyil"
echo *******************************
echo **********************
echo Control Panel Programs
echo **********************
echo CHOICES
echo No.1 -Add or remove programs
echo No.2 -Services
echo No.3 -Internet Properties
echo No.4 -Sound properties
echo No.5 -Power options
echo No.6 -Windows Registry
echo No.7 -Time and Date
echo No.8 -Windows Security Center
echo No.9 -Firewall
echo No.10-Regional Settings
echo No.11-Display Properties
echo No.12-System Properties
echo No.13-Network connections
:entr
echo ENTER CHOICES
echo Choice No:
goto choice
:choice
set /p choice=
if %choice% equ 1 goto app
if %choice% equ 2 goto ser
if %choice% equ 3 goto inet
if %choice% equ 4 goto mmsy
if %choice% equ 5 goto pwr
if %choice% equ 6 goto reg
if %choice% equ 7 goto time
if %choice% equ 8 goto wsc
if %choice% equ 9 goto fwl
if %choice% equ 10 goto intl
if %choice% equ 11 goto dskp
if %choice% equ 12 goto sys
if %choice% equ 13 goto ncpa
:app
start /wait c:\windows\system32\appwiz.cpl
goto entr
:ser
start /wait c:\windows\system32\services.msc
goto entr
:inet
start /wait c:\windows\system32\inetcpl.cpl
goto entr
:mmsy
start /wait c:\windows\system32\mmsys.cpl
goto entr
:pwr
start /wait c:\windows\system32\powercfg.cpl
goto entr
:reg
start /wait c:\windows\system32\regedt32.exe
goto entr
:time
start /wait c:\windows\system32\timedate.cpl
goto entr
:wsc
start /wait c:\windows\system32\wscui.cpl
goto entr
:fwl
start /wait c:\windows\system32\firewall.cpl
goto entr
:intl
start /wait c:\windows\system32\intl.cpl
goto entr
:dskp
start /wait c:\windows\system32\desk.cpl
goto entr
:sys
start /wait c:\windows\system32\sysdm.cpl
goto entr
:ncpa
start /wait c:\windows\system32\ncpa.cpl
goto entr