Suppress titile on CMD
Posted: 11 Mar 2019 12:03
I'd like to find a way to suppress the title when I use CMD.
In a batch file I frequently use CMD at the end to stop the command window from closing.
I like to see the command prompt at the end of the window.
When I use:
I get:
I would like a way to not get the title:
I was hoping this would do it:
But it doesn't.
I realize if I use:
It does suppress the title but then I don't get the command prompt.
Thanks,
Docfxit
In a batch file I frequently use CMD at the end to stop the command window from closing.
I like to see the command prompt at the end of the window.
When I use:
Code: Select all
@cmd
Code: Select all
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\>
Code: Select all
Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
Code: Select all
echo off & (cmd) & echo on
I realize if I use:
Code: Select all
cmd>nul
Thanks,
Docfxit