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
|