Net Use command does not work

  • Thread starter Thread starter Baldyws
  • Start date Start date
B

Baldyws

I need to backup few files from several 2k pro onto 2k
server. I wrote a batch file to do the job, but im having
trouble with the net use connection. I get system Error
67. Please help! Is there a better way of accomplishing
this task? Tnx

------
@echo off
REM files are stored in \\w2k-srvr\Backup_drive

net use Z: "\\w2k-srvr\Backup_drive\" /user:backup\bcd20

xcopy "C:\Documents and Settings\mach100\Documents" "Z:\"

net use Z: /delete
-----
 
Back
Top