View Single Post
  #1 (permalink)  
Old December 12th, 2011, 02:27 AM
martin330 martin330 is offline
Registered User
 
Join Date: Apr 2010
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Default Making Bat File Problem

Following bat file is not work to connect to configure mapping.
But when we configure mapping by manually i.e. by map net work drive it working fine, but it does not work by following bat file,
There is any other good bat file can create ?




Bat file

@echo off

NET USE G: /DELETE
NET USE I: /DELETE
NET USE J: /DELETE
NET USE Q: /DELETE
NET USE S: /DELETE


Net Use G: \\192.168.200.20\projects (g)
Net Use I: \\192.168.200.20\as-built (i)
Net Use J: \\192.168.200.20\departments(j)
Net Use Q: \\192.168.200.20\photos (q)
Net Use S: \\\\192.168.200.20\users (s)\COMMON


Regards
Reply With Quote