Monday, August 15, 2011

How To Make 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:

code(surrounded by [])@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. Your Own Command Prompt

Now click on the file that you have just created !!

0 comments:

Post a Comment