poopskin Posted December 29, 2007 Share Posted December 29, 2007 (edited) @echo offstart C:\WINDOWS\system32\cmd.exeTitle Testing!Color 09Echo "Did this work?"Pause Now, i'm trying to get it to execute the commands in the CMD.EXE window, Not the .BAT file... As in, instead of entering CMD.EXE and typing the commands, It'll automatically apply the commands upon startup. and once it works i wanna remove the "Did this work?" Pause. Edited December 29, 2007 by poopskin Link to comment Share on other sites More sharing options...
VCHolmes Posted December 29, 2007 Share Posted December 29, 2007 Try this: @echo offstart cmd /K "Title Testing! && color 09"Echo "Did this work?"Pause Use /C instead of /K if you want CMD.exe to terminate after executing the command(s). You can add more commands inside the quotes, separated by '&&'. Link to comment Share on other sites More sharing options...
poopskin Posted December 29, 2007 Author Share Posted December 29, 2007 (edited) oh... well, i wanted it to play a small animation after you started it... clscolor 09title SUPER IIecho "OO"echo "||"echo "OO"Ping localhost -n 2 > nulclscolor 08echo "O-O"echo "|S|"echo "O-O"Ping localhost -n 2 > nulclscolor 07echo "O--O"echo "|SU|"echo "O--O"Ping localhost -n 2 > nulclscolor 06echo "O---O"echo "|SUP|"echo "O---O"Ping localhost -n 2 > nulclscolor 05echo "O----O"echo "|SUPE|"echo "O----O"Ping localhost -n 2 > nulclscolor 04echo "O-----O"echo "|SUPER|"echo "O-----O"Ping localhost -n 2 > nulclscolor 03echo "O------O"echo "|SUPER |"echo "O------O"Ping localhost -n 2 > nulclscolor 02echo "O-------O"echo "|SUPER I|"echo "O-------O"Ping localhost -n 2 > nulclscolor 01echo "O--------O"echo "|SUPER II|"echo "O--------O"Ping localhost -n 2 > nulclsecho "O--------O"echo "|SUPER II|"echo "O--------O"Echo Super II system V 1.11Echo By poopskincolor 02Ping localhost -n 2 > nulcolor 03Ping localhost -n 2 > nulcolor 04Ping localhost -n 2 > nulcolor 05Ping localhost -n 2 > nulcolor 06Ping localhost -n 2 > nulcolor 07Ping localhost -n 2 > nulcolor 08Ping localhost -n 2 > nulcolor 09Ping localhost -n 2 > nulcolor 90Ping localhost -n 2 > nulcolor 09Ping localhost -n 2 > nulcolor 90Ping localhost -n 2 > nulcolor 09Ping localhost -n 2 > nulcolor 90Ping localhost -n 2 > nulcolor 09Ping localhost -n 2 > nulcolor 90Ping localhost -n 2 > nulcolor 09pause i'm trying to make a customized cmd.exe called Super 2. (like some form of supercomputer) (P.S: How do you get Charicters like ╣ and ╤ to show up in DOS? Notepad won't save them.) Edited December 29, 2007 by poopskin Link to comment Share on other sites More sharing options...
facugaich Posted December 29, 2007 Share Posted December 29, 2007 (P.S: How do you get Charicters like ╣ and ╤ to show up in DOS? Notepad won't save them.) In Notepad choose the font "Terminal", that should work, it did for me. Also, this should be in WD&P. Link to comment Share on other sites More sharing options...
poopskin Posted December 29, 2007 Author Share Posted December 29, 2007 (edited) It worked, thanks...But it's displaying the text in the .Bat box that opened the CMD, Not the CMD box... (P.S: How did the late '80s "Ambulance virus" make the ASCII ambulance go across the screen? I'm trying to make a non-viral Emulator of it's effects.) Edited December 29, 2007 by poopskin Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now