Where I implemented it, it was a two-stage process.
A. NT Backup runs on Server B to pick out what wants to be backed up and backs it up to a local backup.bkf file. This makes it convenient because it creates one file to move and does some compression at the same time. Schedule NT Backup to run nightly (or whatever)
B. Copy the file to Server A.
Make a batch file with a command like the following:
copy \\serverB\backupfolder\backup.bkf \\serverA\backupfolder\backupB.bkf /Y
Schedule the batch file to run. The /Y parameter suppresses copy prompts and messages.
You can test this by:
A. Scheduling the NT Backup and letting it run. Check the existence of the bkf file and make sure the log says all completed properly
B. Create the batch file and run it manually to see that it works.
Then schedule it all and test.
... Thinkpads_User