Search found 3 matches

by brianpaul
27 Jul 2009 17:51
Forum: DOS Batch Forum
Topic: How to map drive and open folder
Replies: 5
Views: 9096

Thanks Avery, that's a big help! You're right, && works, but it doesn't go onto the next command if the current command doesn't succeed. The command following && will be executed only if the first command is successful. I would like to start with a "net use /d S:" statement...
by brianpaul
27 Jul 2009 08:37
Forum: DOS Batch Forum
Topic: How to map drive and open folder
Replies: 5
Views: 9096

How to map drive and OPEN FOLDER

Ok, let me try to be a little clearer. I want to do two things... 1. Map a drive 2. Open the folder of that drive PLEASE note that I know how to do this. All I need to so is this... C:\Windows\System32\net use s: \\Server\Share explorer s: The problem is, I don't want to do this in a batch file, I w...
by brianpaul
24 Jul 2009 13:56
Forum: DOS Batch Forum
Topic: How to map drive and open folder
Replies: 5
Views: 9096

How to map drive and open folder

I can map a drive and open the folder by doing the following... C:\Windows\System32\net use s: \\Server\Share explorer s: But I want to do this all in one command so I can create a link on a desktop that will map and open the shared folder. In other words, I want to have an icon on the desktop that ...