in reply to Re: MS system open file with space
in thread MS system open file with space
c:\> start "c:\program files" (Pops useless command prompt window at default directory)
That's because the optional first argument to start is a window title.
If the first argument begins with ", then it is taken as a title -- take a look at the titlebar of that useless command prompt window.
To disable that effect, prefix the directory with a dummy title:start "" "c:\program files"
|
|---|