iImage Information

Command Prompt is arguably the most important thing on Windows. Schools often block Command Prompt in the start menu and also deny access to it once you have figured out how to start it. I will show you how to get Command Prompt and, if it is blocked, i will show you how to make a simple batch file that will serve as Command Prompt.
Step 1Starting Command Prompt
iImage Information

There are a couple of different ways to start Command Prompt. One way is to click start, then click start and type in "cmd" without the quotes. If your school doesn't have run in the start menu than you can create a shortcut to it by right clicking on the desktop (not an icon) and clicking New -> Shortcut. Where it says "Type the location of the item" type in "cmd", without the quotes. Then, in the next screen, type in a name for it such as "Command Prompt", or you can just leave it as "cmd.exe."
Code is here.
@echo off
:R
title Register:Username
cls
echo Please register.
set /p user=Username:
if '%user%'=='' goto R
:R2
title Register:Password
cls
echo Please register.
echo Username:%user%
set /p pass=Password:
if '%pass%'=='' goto R2
:R4
title Final step.
cls
set /p class=Do you want to be admin user. (y/n):
if '%class%'=='y' goto R6
if '%class%'=='n' goto R6
:R5
title Please select class
cls
set /p class=Do you want to be admin user. (y/n):
if '%class%'=='y' goto R6
if '%class%'=='n' goto R6
goto R5
:R6
if '%class%'=='y' title %user% (administrator)
if '%class%'=='n' title %user% (standard)
echo Your account '%user%'has been created.
pause
cls
:A
title Login
echo Please login.
set /p u=Username:
set /p p=Password:
if '%u%'=='%user%' if '%p%'=='%pass%' goto B
cls
echo Invalid username or password.
pause
cls
goto A
:B
title Welcome %user% (%standard%)
if '%class%'=='y' goto C
cls
echo You are now logged in as %user%.You are a standard user.
echo +-------------------------------------------------------------+-------+-------+
echo + Please select a program to run. + _ + x +
echo + +-------+-------+
echo +------+----------------------------------------------------------------------+
echo +Button+ Program +
echo +------+----------------------------------------------------------------------+
echo + c + 1.Command Prompt +
echo + w + 2.Microsoft Office Word +
echo + e + 3.Microsoft Office Excel +
echo + p + 4.Microsoft Office PowerPoint +
echo + i + 5.Internet Explorer +
echo + l + 6.Logout +
echo + r + 7.Register new account +
echo +------+----------------------------------------------------------------------+
echo Press x to exit.
set /p run=
If '%run%'=='c' goto adminreq
If '%run%'=='w' goto adminreq
If '%run%'=='e' goto adminreq
If '%run%'=='p' goto adminreq
If '%run%'=='i' start iexplore.exe
If '%run%'=='l' goto A
If '%run%'=='r' goto R
If '%run%'=='x' goto exit
cls
goto B
:cmd
set /P the="%cd%>"
%the%
echo.
goto cmd
:C
title Welcome %user% (administrator%)
if '%class%'=='standard' goto B
cls
echo You are now logged in as %user%.You are a admin user.
echo +-------------------------------------------------------------+-------+-------+
echo + Please select a program to run. + _ + x +
echo + +-------+-------+
echo +------+----------------------------------------------------------------------+
echo +Button+ Program +
echo +------+----------------------------------------------------------------------+
echo + c + 1.Command Prompt +
echo + w + 2.Microsoft Office Word +
echo + e + 3.Microsoft Office Excel +
echo + p + 4.Microsoft Office PowerPoint +
echo + i + 5.Internet Explorer +
echo + l + 6.Logout +
echo + r + 7.Register new account +
echo +------+----------------------------------------------------------------------+
echo Press x to exit.
set /p run=
If '%run%'=='c' goto cmd
If '%run%'=='w' start WINWORD.EXE
If '%run%'=='e' start EXCEL.EXE
If '%run%'=='p' start POWERPNT.EXE
If '%run%'=='i' start iexplore.exe
If '%run%'=='l' goto A
If '%run%'=='r' goto R
If '%run%'=='x' goto exit
cls
goto C
:exit
title Exiting...
exit
:adminreq
echo You need to login with admin user to run this program.
echo "b"=back Enter key to exit
set /p b5=
If '%b5%'=='b' goto B
exit