ECHO You can press CRTL-C at any time to abort.
ECHO.
PAUSE
Qweet wrote:If you want to write stuff to the person using the batch file, write
@echo off
at the top of the batch file, and then when you want to say something, use
echo Hello! This installs the VC update...
ren happy.txt sad.txt
del sad.txt
pause
@echo off
echo Welcome to my redundant patch!
echo Renaming happy.txt to sad.txt...
ren happy.txt sad.txt
del sad.txt
echo sad.txt is deleted successfully!:)
pause
IF NOT EXIST saves\000\players.dbf MD saves [b]> NUL[/b]
Slam harder wrote:After looking in a cyberface batch file I could figure out a little bit the system. So I actually managed to do a batch files that extract all the files,
delete the old ones and creating new ones (if there were none).
But in my Roster Patch I have 2 saves, which means that I have 2 of everything, and beacause that I have to rename them (as you were talking about) to make it work.
But it didnt work. It copied but, it didnt changed the names!
ren VC4.jpg VC5.jpg
pause
md Test\000 >nul
md Test\001 >nul
move VC4.jpg Test\000\
move VC5.jpg Test\001\
They both got were I wanted them, but I wanted VC4.jpg to be renamed to VC5.jpg.
But I got some stupid error message instead. HELP!
pause
md Test\000 >nul
md Test\001 >nul
move VC5.jpg Test\001\
ren VC4.jpg VC5.jpg
move VC4.jpg Test\000\
Finnboy wrote:Is it possible for a batch file to run a program, for example another batch file or a .exe file? If if, how?
This could enable many possibilities....
Users browsing this forum: No registered users and 4 guests