Here are the steps I need, I am using a batch script
So I can enter the commands directly without a long line blocking the view
Code I 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 have to type "echo off" & "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 output I want is simple
Imagine a blinking underscore
_
Thank you.
Try this line:
start /D "C:\Documents and Settings\Administrator\Desktop" cmd /k "prompt $"
/D <path>
will set your working directory
Prompt $
will set your prompt to "nothing", only the blinking cursor will display
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With