Have you considered some quote marks ? That's the kind of
thing that works in other OSes. And in some OSes, the single
quote character has a different effect than the double quote
character. (You end up mixing them, for different purposes.)
dir "C:\Documents and Settings"
For each scripting environment, you have to learn about
what can be used for quoting, what can be used to escape
the quote character, so it can be used for normal things.
And depending on the environment, how many "layers" of
escape characters are needed, so that at least one survives
until it hits the shell interpreter.
Example here, of someone using the terminology of scripting trivia...
http://www.robvanderwoude.com/escapechars.php
You just try the stuff, until it works.
http://www.computerhope.com/forum/index.php/topic,34613.0.html
Try a Google search like this, for more tutorials:
msdos escape quote characters
HTH,
Paul