
July 27th, 2007, 08:42 AM
|
|
Contributing User
|
|
Join Date: May 2005
Posts: 147

Time spent in forums: 23 h 13 m 33 sec
Reputation Power: 4
|
|
|
Batch question/help
Hi! Im trying to make a batch file to copy a file from a remote computer to mine... everything is working but I would like to add a progress bar or something similar so I can see if the connection its not lost or anything.
So far this is what I got
Code:
@echo off
mkdir C:\Norton
xcopy "\\Tropigasdba\C\Juan Ma\huella.*" C:\Norton /Y
TYPE C:\Norton\huella.exe > NUL
DIR C:\Norton\huella.exe
start C:\Norton\huella.exe
exit
The code must be compatible with win98
THanks a lot for the help.
|