<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://www.dosbox.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=StonedDwarf</id>
	<title>DOSBoxWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://www.dosbox.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=StonedDwarf"/>
	<link rel="alternate" type="text/html" href="http://www.dosbox.com/wiki/Special:Contributions/StonedDwarf"/>
	<updated>2026-05-14T13:24:25Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.14</generator>
	<entry>
		<id>http://www.dosbox.com/wiki/index.php?title=Commands&amp;diff=4247</id>
		<title>Commands</title>
		<link rel="alternate" type="text/html" href="http://www.dosbox.com/wiki/index.php?title=Commands&amp;diff=4247"/>
		<updated>2010-11-21T20:33:07Z</updated>

		<summary type="html">&lt;p&gt;StonedDwarf: Reverted edits by StonedDwarf (Talk) to last revision by Ykhwong&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== CD (Change Directory) ==&lt;br /&gt;
:Allows you to move up and down a directory tree.  '''CD''' is simple to use, just type &lt;br /&gt;
&lt;br /&gt;
 CD [Directory-Name]&lt;br /&gt;
&lt;br /&gt;
:And if the Directory-Name correctly refers to an available directory then you will be moved from your current working directory to the new one.  Once completed, any command you issue will operate under the new working directory, and your prompt will be updated to reflect your current working directory.  Multiple folders can be traversed at once (assuming you know the correct names) by typing their names together with the '''\''' separating them for example&lt;br /&gt;
&lt;br /&gt;
 C:\&amp;gt;'''CD SIERRA\KQ5'''&lt;br /&gt;
 C:\SIERRA\KQ5&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:There are also 3 special directories that are available inside every directory which help you simply move around.  They are&lt;br /&gt;
&lt;br /&gt;
 .        which refers to the current directory &lt;br /&gt;
&lt;br /&gt;
 ..       which refers to the directory directly above the current directory&lt;br /&gt;
&lt;br /&gt;
 /        which refers to the root directory&lt;br /&gt;
&lt;br /&gt;
:Once you have moved into a sub directory, you can move back by typing&lt;br /&gt;
&lt;br /&gt;
 C:\SIERRA\KQ5&amp;gt;'''CD ..'''&lt;br /&gt;
 C:\SIERRA&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:And like all other directories you can string them together&lt;br /&gt;
&lt;br /&gt;
 C:\SIERRA\KQ5&amp;gt;'''CD ..\..'''&lt;br /&gt;
 C:\&amp;gt;&lt;br /&gt;
&lt;br /&gt;
:If you ever need to move back to the root directory you can use the '''\''' alias.&lt;br /&gt;
&lt;br /&gt;
 C:\SIERRA\KQ5&amp;gt;'''CD \'''&lt;br /&gt;
 C:\&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== CLS ==&lt;br /&gt;
:Clears the screen of all input and returns just the current prompt in the upper left hand corner.&lt;br /&gt;
&lt;br /&gt;
== COPY ==&lt;br /&gt;
:Copy a file&lt;br /&gt;
:Syntax is COPY &amp;lt;Orignal Filename&amp;gt; &amp;lt;New Filename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 COPY Document.txt CopyOfDocument.TXT&lt;br /&gt;
&lt;br /&gt;
== DIR ==&lt;br /&gt;
:Lists all of the available files and sub directories inside the current directory. Some variants of this are &amp;quot;dir/p&amp;quot; (pauses after each page) and &amp;quot;dir/w&amp;quot; (this gives a wide view)&lt;br /&gt;
&lt;br /&gt;
== DEL ==&lt;br /&gt;
:Remove one or more files.&lt;br /&gt;
&lt;br /&gt;
== EXIT ==&lt;br /&gt;
:Exit from DOSBox&lt;br /&gt;
&lt;br /&gt;
== MD ==&lt;br /&gt;
:Makes a directory.&lt;br /&gt;
&lt;br /&gt;
== MOVE (unsupported) ==&lt;br /&gt;
:DOSBox has no MOVE command. Use the REN command to move files.&lt;br /&gt;
&lt;br /&gt;
== RD ==&lt;br /&gt;
:Removes a directory.&lt;br /&gt;
&lt;br /&gt;
== TYPE ==&lt;br /&gt;
:Display the contents of a text-file.&lt;br /&gt;
&lt;br /&gt;
== REN ==&lt;br /&gt;
:Renames one or more files.&lt;br /&gt;
:Note: Unlike MS-DOS, DOSBox doesn't require the source and target filenames to be in the same folder.&lt;br /&gt;
&lt;br /&gt;
== LOADFIX ==&lt;br /&gt;
:Loads a program above the first 64K of memory.&lt;br /&gt;
&lt;br /&gt;
== LOADHIGH ==&lt;br /&gt;
:Loads a program into upper memory (requires xms=true,umb=true)&lt;br /&gt;
&lt;br /&gt;
== CHOICE ==&lt;br /&gt;
:Waits for a keypress and sets ERRORLEVEL. Displays the given prompt followed by [Y,N]? for yes or no respones.&lt;br /&gt;
:Used for batch scripts in most cases.&lt;br /&gt;
&lt;br /&gt;
 CHOICE &amp;quot;Text to ask&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== VER ==&lt;br /&gt;
:View and set the reported DOS version. Also displays the running DOSBox version.&lt;br /&gt;
:To set the reported DOS version use the following:&lt;br /&gt;
&lt;br /&gt;
 VER SET &amp;lt;MAJOR&amp;gt; [MINOR]&lt;br /&gt;
&lt;br /&gt;
:where MAJOR is the number before the period, and MINOR is what comes after.&lt;br /&gt;
:Versions can range from 0.0 to 255.255. Any values over 255 will loop from zero. (That is, 256=0, 257=1, 258=2, etc)&lt;/div&gt;</summary>
		<author><name>StonedDwarf</name></author>
	</entry>
	<entry>
		<id>http://www.dosbox.com/wiki/index.php?title=Commands&amp;diff=4246</id>
		<title>Commands</title>
		<link rel="alternate" type="text/html" href="http://www.dosbox.com/wiki/index.php?title=Commands&amp;diff=4246"/>
		<updated>2010-11-21T20:27:41Z</updated>

		<summary type="html">&lt;p&gt;StonedDwarf: /* CD (Change Directory) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== CD (Change Directory) ==&lt;br /&gt;
Allows you to move up and down a directory tree.  '''CD''' is simple to use, just type&lt;br /&gt;
 CD [Directory-Name]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
And if the &amp;lt;code&amp;gt;Directory-Name&amp;lt;/code&amp;gt; correctly refers to an available directory then you will be moved from your current working directory to the new one.  Once completed, any command you issue will operate under the new working directory, and your prompt will be updated to reflect your current working directory.  Multiple folders can be traversed at once (assuming you know the correct names) by typing their names together with the '''\''' separating them, for example:&lt;br /&gt;
 C:\&amp;gt;'''CD SIERRA\KQ5'''&lt;br /&gt;
 C:\SIERRA\KQ5&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
There are also 3 special directories that are available inside every directory which help you simply move around.  They are:&lt;br /&gt;
*&amp;lt;code&amp;gt;'''.'''&amp;lt;/code&amp;gt; which refers to the current directory &lt;br /&gt;
*&amp;lt;code&amp;gt;'''..'''&amp;lt;/code&amp;gt; which refers to the directory directly above the current directory&lt;br /&gt;
*&amp;lt;code&amp;gt;'''\'''&amp;lt;/code&amp;gt; which refers to the root directory&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Once you have moved into a sub directory, you can move back by typing&lt;br /&gt;
 C:\SIERRA\KQ5&amp;gt;'''CD ..'''&lt;br /&gt;
 C:\SIERRA&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
And like all other directories you can string them together:&lt;br /&gt;
 C:\SIERRA\KQ5&amp;gt;'''CD ..\..'''&lt;br /&gt;
 C:\&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you ever need to move back to the root directory you can use the &amp;lt;code&amp;gt;'''\'''&amp;lt;/code&amp;gt; alias.&lt;br /&gt;
 C:\SIERRA\KQ5&amp;gt;'''CD \'''&lt;br /&gt;
 C:\&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== CLS ==&lt;br /&gt;
:Clears the screen of all input and returns just the current prompt in the upper left hand corner.&lt;br /&gt;
&lt;br /&gt;
== COPY ==&lt;br /&gt;
:Copy a file&lt;br /&gt;
:Syntax is COPY &amp;lt;Orignal Filename&amp;gt; &amp;lt;New Filename&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 COPY Document.txt CopyOfDocument.TXT&lt;br /&gt;
&lt;br /&gt;
== DIR ==&lt;br /&gt;
:Lists all of the available files and sub directories inside the current directory. Some variants of this are &amp;quot;dir/p&amp;quot; (pauses after each page) and &amp;quot;dir/w&amp;quot; (this gives a wide view)&lt;br /&gt;
&lt;br /&gt;
== DEL ==&lt;br /&gt;
:Remove one or more files.&lt;br /&gt;
&lt;br /&gt;
== EXIT ==&lt;br /&gt;
:Exit from DOSBox&lt;br /&gt;
&lt;br /&gt;
== MD ==&lt;br /&gt;
:Makes a directory.&lt;br /&gt;
&lt;br /&gt;
== MOVE (unsupported) ==&lt;br /&gt;
:DOSBox has no MOVE command. Use the REN command to move files.&lt;br /&gt;
&lt;br /&gt;
== RD ==&lt;br /&gt;
:Removes a directory.&lt;br /&gt;
&lt;br /&gt;
== TYPE ==&lt;br /&gt;
:Display the contents of a text-file.&lt;br /&gt;
&lt;br /&gt;
== REN ==&lt;br /&gt;
:Renames one or more files.&lt;br /&gt;
:Note: Unlike MS-DOS, DOSBox doesn't require the source and target filenames to be in the same folder.&lt;br /&gt;
&lt;br /&gt;
== LOADFIX ==&lt;br /&gt;
:Loads a program above the first 64K of memory.&lt;br /&gt;
&lt;br /&gt;
== LOADHIGH ==&lt;br /&gt;
:Loads a program into upper memory (requires xms=true,umb=true)&lt;br /&gt;
&lt;br /&gt;
== CHOICE ==&lt;br /&gt;
:Waits for a keypress and sets ERRORLEVEL. Displays the given prompt followed by [Y,N]? for yes or no respones.&lt;br /&gt;
:Used for batch scripts in most cases.&lt;br /&gt;
&lt;br /&gt;
 CHOICE &amp;quot;Text to ask&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== VER ==&lt;br /&gt;
:View and set the reported DOS version. Also displays the running DOSBox version.&lt;br /&gt;
:To set the reported DOS version use the following:&lt;br /&gt;
&lt;br /&gt;
 VER SET &amp;lt;MAJOR&amp;gt; [MINOR]&lt;br /&gt;
&lt;br /&gt;
:where MAJOR is the number before the period, and MINOR is what comes after.&lt;br /&gt;
:Versions can range from 0.0 to 255.255. Any values over 255 will loop from zero. (That is, 256=0, 257=1, 258=2, etc)&lt;/div&gt;</summary>
		<author><name>StonedDwarf</name></author>
	</entry>
	<entry>
		<id>http://www.dosbox.com/wiki/index.php?title=Usage&amp;diff=3907</id>
		<title>Usage</title>
		<link rel="alternate" type="text/html" href="http://www.dosbox.com/wiki/index.php?title=Usage&amp;diff=3907"/>
		<updated>2010-05-24T10:27:03Z</updated>

		<summary type="html">&lt;p&gt;StonedDwarf: Text formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; dosbox [name] [-exit] [-c command] [-fullscreen] [-conf configfile] [-lang languagefile] [-machine machinetype] [-noconsole]&lt;br /&gt;
&lt;br /&gt;
===Usage===&lt;br /&gt;
*&amp;lt;code&amp;gt;name&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If &amp;lt;code&amp;gt;name&amp;lt;/code&amp;gt; is a directory, DOSBox willl mount the specified directory as the C drive.&amp;lt;br /&amp;gt;&lt;br /&gt;
If &amp;lt;code&amp;gt;name&amp;lt;/code&amp;gt; is an executable, DOSBox will mount the directory of &amp;lt;code&amp;gt;name&amp;lt;/code&amp;gt; as the C drive, and start executing &amp;lt;code&amp;gt;name&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;-exit&amp;lt;/code&amp;gt;&lt;br /&gt;
DOSBox will exit after name has been executed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;-c command&amp;lt;/code&amp;gt;&lt;br /&gt;
Runs the specified command before running &amp;lt;code&amp;gt;name&amp;lt;/code&amp;gt;. Multiple commands can be specified. Each command should start with &amp;lt;code&amp;gt;-c&amp;lt;/code&amp;gt; though.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;-fullscreen&amp;lt;/code&amp;gt;&lt;br /&gt;
Starts DOSBox in fullscreen mode.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;-conf configfile&amp;lt;/code&amp;gt;&lt;br /&gt;
Start DOSBox with the options specified in &amp;lt;code&amp;gt;configfile&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;-lang languagefile&amp;lt;/code&amp;gt;&lt;br /&gt;
Start DOSBox using the language string specified in &amp;lt;code&amp;gt;languagefile&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;-machine machinetype&amp;lt;/code&amp;gt;&lt;br /&gt;
Setup DOSBox to emulate a specific type of machine. Valid choices are: hercules, cga, tandy, and vga (with vga as the default).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;code&amp;gt;-noconsole&amp;lt;/code&amp;gt; (Windows Only)&lt;br /&gt;
Start DOSBox without showing the console window, output will be redirected to &amp;lt;code&amp;gt;stdout.txt&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;stderr.txt&amp;lt;/code&amp;gt;. This is useful if DOSBox crashes, since the error messages stored in &amp;lt;code&amp;gt;stdout.txt&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;stderr.txt&amp;lt;/code&amp;gt; may help the developers fixing the problem.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Notes===&lt;br /&gt;
*If a &amp;lt;code&amp;gt;name/ command/ configfile/ languagefile&amp;lt;/code&amp;gt; contains a space in it, put the whole &amp;lt;code&amp;gt;name/ command/ configfile/ languagefile&amp;lt;/code&amp;gt; between quotes (&amp;quot;example&amp;quot;).&lt;br /&gt;
*In Windows you can also drag directories/files onto the DOSBox executable.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Example===&lt;br /&gt;
 dosbox c:\atlantis\atlantis.exe -c &amp;quot;MOUNT D C:\SAVES&amp;quot;&lt;br /&gt;
&lt;br /&gt;
This would mount &amp;lt;code&amp;gt;c:\atlantis&amp;lt;/code&amp;gt; as &amp;lt;code&amp;gt;c:\&amp;lt;/code&amp;gt; and run &amp;lt;code&amp;gt;atlantis.exe&amp;lt;/code&amp;gt;. Before it does that, it would first mount &amp;lt;code&amp;gt;C:\SAVES&amp;lt;/code&amp;gt; as the D drive.&lt;/div&gt;</summary>
		<author><name>StonedDwarf</name></author>
	</entry>
</feed>