[RESOLVED] Don't know where to post this?? (Batch File Question)
I have no idea where you post questions about batch files, but anyway...
I wrote a batch files and put it in the all users StartUp. I want it to map network drives when they log in. My problem is I don't know what syntax to use for the drives the have spaces in them. The others work fine, but the ones with spaces don't b/c the syntax is wrong. Here's what I have:
net use R: \\hol-cs-dfs\49 COMP
net use S: \\leave\Dmoinput WORKS
net use T: \\leave\Dmodata WORKS
net use U: \\hmn-fsiats2\users WORKS
net use V: \\hol-cs-dfs\49 COMP\signindatabase2.5
net use W: \\hmn-fsiats2\Customer Support
net use X: \\hmn-fsiats2\travelvouchers WORKS
Re: Don't know where to post this?? (Batch File Question)
Moved to General Developer
Re: Don't know where to post this?? (Batch File Question)
net use R: "\\hol-cs-dfs\49 COMP"
net use S: \\leave\Dmoinput WORKS
net use T: \\leave\Dmodata WORKS
net use U: \\hmn-fsiats2\users WORKS
net use V: "\\hol-cs-dfs\49 COMP\signindatabase2.5"
net use W: "\\hmn-fsiats2\Customer Support"
net use X: \\hmn-fsiats2\travelvouchers WORKS