2011-12-20 2 views

답변

3
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. 
3

나는 이것이 가능하지 않다고 생각합니다. CMD를 스크립트에서 시작할 때이 작동

start "MyWindow" cmd.exe 
1

: 당신은 사용자 정의 창 제목에 cmd.exe를 실행 배치 파일의 바로 가기를 만들려면이 같은 뭔가가 필요합니다 (특정 제목이있는 특정 사용자 컨텍스트에서 CMD 시작)

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