• New Horizons on Maelstrom
    Maelstrom New Horizons


    Visit our website www.piratehorizons.com to quickly find download links for the newest versions of our New Horizons mods Beyond New Horizons and Maelstrom New Horizons!

Flashback to the days of DOS...

LarryHookins

Buccaneer
Staff member
Storm Modder
In file English.bat (and all the batch files) you can get rid of the questions about deleting by adding "ECHO Y|" to the beginning of the "del" lines like this:

ECHO Y|del RESOURCE\Textures\Loading\*.*
ECHO Y|del RESOURCE\Sounds\VOICE\*.*
ECHO Y|del RESOURCE\Textures\WorldMap\reload\*.*
ECHO Y|del PROGRAM\DIALOGS\*.h

No sense confusing a user when the questions can be answered automatically.

Hook
 
Thanks a lot, Hook. I knew there was some way to automate it, but I couldn't figure out how anymore, even though I used to know. <img src="style_emoticons/<#EMO_DIR#>/oops3.gif" style="vertical-align:middle" emoid=":eek:ops2" border="0" alt="oops3.gif" />
 
Alternatively that would be done with '/q' option:
<!--quoteo--><div class='quotetop'>QUOTE</div><div class='quotemain'><!--quotec-->del /q RESOURCE\Textures\Loading\*.*
del /q RESOURCE\Sounds\VOICE\*.*
del /q RESOURCE\Textures\WorldMap\reload\*.*
del /q PROGRAM\DIALOGS\*.h<!--QuoteEnd--></div><!--QuoteEEnd-->

pirate_kk
 
What does /q mean? <img src="style_emoticons/<#EMO_DIR#>/unsure.gif" style="vertical-align:middle" emoid=":?" border="0" alt="unsure.gif" />
 
<!--quoteo(post=150937:date=Jun 12 2006, 12:59 PM:name=Pieter Boelen)--><div class='quotetop'>QUOTE(Pieter Boelen @ Jun 12 2006, 12:59 PM) [snapback]150937[/snapback]</div><div class='quotemain'><!--quotec-->
What does /q mean? <img src="style_emoticons/<#EMO_DIR#>/unsure.gif" style="vertical-align:middle" emoid=":?" border="0" alt="unsure.gif" />
<!--QuoteEnd--></div><!--QuoteEEnd-->
/Q Quiet mode, do not ask if ok to delete on global wildcard

Open a command window, type del /? to get a list of options, including that one. I'd suggest doing it in an empty folder, just in case. <img src="style_emoticons/<#EMO_DIR#>/smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />

This is newer than the version my DOS manual covers. First time I've heard of it too.

Hook
 
Ah. Nice. Thanks. <img src="style_emoticons/<#EMO_DIR#>/doff.gif" style="vertical-align:middle" emoid=":doff" border="0" alt="doff.gif" />
 
It turns out there's a whole set of documentation on the old "DOS" commands in Windows XP. Click Start->Help and Support and type "command line reference" into the search box.

Hook
 
Back
Top