Saved Bookmarks
| 1. |
Solve : how to change the cmd.exe name to other .exe name? |
|
Answer» HMMM i just create a small kids games using batch and convert it into an exe file i wonder when i click the batch itself it just name cmd.exe is there a way to change it to other name like shooter.exeI don't understand the question... So you made a batch file and you converted it into an EXE... Now what? Can't you rename this file? Is this the windows command prompt located in the system directory (c:\windows\system32)? Also your operating system may be useful...ok whenever i launch the batch on top of the bar always show the c:\windows\system32\cmd.exe and in the TASKLIST also shown the cmd.exe so is there a way to rename the cmd.exe name to for example shooter.exe im running windows XP sp2cmd.exe is the name of the Windows XP command interpreter. It appears at the top pf command windows unless you explicitly change it eg:- title "shooter.exe" ya so how to change it any1 can help me out You can set the title if you change the way you start your batch file. If your batch file is called GAME.BAT, then try this from your command prompt: Code: [Select]start "Shooter" game.bat Using this, you could create a 2nd batch file to launch your game with the code above. Quote from: GuruGary on JUNE 12, 2007, 11:17:04 PM You can set the title if you change the way you start your batch file. If your batch file is called GAME.BAT, then try this from your command prompt: thx fot that i already knew that but then if i convert it into an exe so....Quote from: nwlun on June 12, 2007, 05:12:59 PM ya so how to change it I just told you |
|