Search This Blog

Pages

Showing posts with label Make your own cmd. Show all posts
Showing posts with label Make your own cmd. Show all posts

Thursday, March 4, 2010

Make your own cmd

Make Your Own Command Prompt :
Follow these steps—>
  • Copy the following script in noteped–>
    Quote:
    code(surrounded by [])@echo off
    cls
    :loop
    set command=
    echo ——————————–
    chdir
    set /P command=”Prompt: ”
    echo ——————————–
    %command%
    goto loop
  • Save the file as cmd.bat.
  • Done