Problem with batch file.

Man of Honour
Joined
15 Mar 2004
Posts
28,140
Location
Liverpool
I am trying to create a batch file, such that when I click it, all the folders in my storage volume open up.

It is running fine for those folders that have a single word as their name, but for those with more than one - I get "cant find blah blah" errors.

Can anybody help as to why? Do I need to use speech marks or something?

@ECHO OFF

START D:\Singles
START D:\Albums
START D:\Desktop Wallpapers
START D:\Drivers and Firmware
START D:\Dump
START D:\Movies
START D:\Other Items
START D:\Photos and Pictures
START D:\TV Show & Movie Clips
START D:\Utilities
 
Yeap - just edited it - and Kami has cracked it. :)

Thanks for your help fellas.

*Hands out biscuits* :p

The final bit :

@ECHO OFF

START /min D:\Singles
START /min D:\Albums
START /min D:\DESKTO~1
START /min D:\DRIVER~1
START /min D:\Dump
START /min D:\Movies
START /min D:\OTHERI~1
START /min D:\PHOTOS~1
START /min D:\TVSHOW~1
START /min D:\Utilities
 
Last edited:
Back
Top Bottom