Oct 13, 2009

Create ur own Command Prompt

Many businesses and especially government jobs like to block regular users away from the command prompt. This is your way around that creating your own...

All you need is a text editor such as notepad. Do not try this with Microsoft Word...

Step 1 - Copy the following script:

@echo off
cls
:loop
set command=
echo --------------------------------
chdir
set /P command="Prompt: "
echo --------------------------------
%command%
goto loop

Step 2 - Name the file cmd.bat That's it.

0 comments:

Post a Comment