我有一个cmd.exe的快捷方式。
从此快捷方式运行时,是否可以更改cmd窗口标题?
答案 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"