使用自定义标题从快捷方式调用cmd

时间:2011-12-20 11:09:31

标签: windows cmd

我有一个cmd.exe的快捷方式。

从此快捷方式运行时,是否可以更改cmd窗口标题?

3 个答案:

答案 0 :(得分:6)

C:\> cmd /k "title MyWindow"

`cmd /K`      => Carries out the command specified by string but remains
`title [str]` => Specifies the title for the command prompt window.

答案 1 :(得分:5)

我不认为这是可能的。您需要创建一个批处理文件的快捷方式,该文件使用您的自定义窗口标题运行cmd.exe,如下所示:

start "MyWindow" cmd.exe

答案 2 :(得分:1)

从CMD脚本启动时可以使用 (在具有特定标题的特定用户环境中启动CMD)

runas /savecred /user:domain\user "%SystemRoot%\system32\cmd.exe /K title BAD MF"