Hey guys!
I have a simple Batch program for accessing Important tools and utilities of Windows Operating System. It can access the following tools :

  • MSConfig Utility
  • Registry Editor
  • Services
  • Control Panel
  • Add/Remove Programs
  • Group Policy Editor
  • Task Manager


All you have to do it just copy the below code into notepad and save the file with "bat" Extension [example : sysutils.bat]. Once done just double click the file and select the option what you want to do...!

Here is the code :

Code:
@ECHO OFF
:Start
echo Press 0 to EXIT
echo Press 1 for MSConfig Utility
echo Press 2 for Registry Editor
echo Press 3 for Services
echo Press 4 for Control Panel
echo Press 5 for Add/Remove Programs
echo Press 6 for Group Policy Editor
echo Press 7 for Task Manager
SET /P variable=
IF %variable%==7 taskmgr
IF %variable%==6 gpedit.msc
IF %variable%==5 appwiz.cpl
IF %variable%==4 control | exit
IF %variable%==3 services.msc
IF %variable%==2 regedit
IF %variable%==1 C:\WINDOWS\pchealth\helpctr\binaries\msconfig.exe
IF %variable%==0 exit

echo Invalid Key Pressed
GOTO Start
Have fun...!
All the best!