start command

  • Thread starter Thread starter paul gerber
  • Start date Start date
P

paul gerber

how can I get the start command to handle a path with
spaces? Example: start /b "c:\program files\internet
explorer\iexplore.exe"
 
paul gerber said:
how can I get the start command to handle a path with
spaces? Example: start /b \"

Type
START /?
at a DOS prompt for help with the command. You need to give path and
exe separately, like:
START /d"c:\program files\internet explorer" /b iexplore.exe
 
Back
Top