I am looking for a maintenance script that automaticaly runs 'rdisk.exe' and then copies the files to a central share on a specific server??. Does anyone now of anything??
If you haven't already found a solution, here is the batch file that I've used for several years to backup 8 remote office BDCs to our central office.
%systemroot%\system32\rdisk.exe /s-
net use q: /delete
net use q: \\server_name\Backup$ /persistent:no
if not exist q:\rdisk\%computername% md q:\rdisk\%computername%
copy %systemroot%\repair\* q:\rdisk\%computername%
net use q: /delete
Just replace "server_name" with then name or IP address of the destionation server and schedule it with at. This can be run from any WinNT machine and it will create a directory for the machine you are backing up on the destination server.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.