Here are the steps I need, I am using a script package
- Open cmd with a desktop launcher
- Then set its echo
- Then clear the screen
- Then wait for the input of commands
So, I can directly enter commands without a long line blocking the view
The code I've tried so far
@echo off cd "C:\Documents and Settings\Administrator\Desktop" cls cmd @echo off cls
But when I run this, I get a typical CMD window where I need to type "echo off" and "cls" again to get a clean window.
The output I get is
Microsoft Windows XP [Version 5.1.2600] (C) Copyright 1985-2001 Microsoft Corp. C:\Documents and Settings\Administrator\Desktop>
The conclusion I want is simple
Imagine a flashing underscore
_
Thanks.
source share