I am using XP Media centre edition for my server. Its licence seems to support five connections. I know how to use sockets, but I am not quite sure of MSs definition of a connection.
Anyway, part of my problem is that I seem to have too many connections or too many users according the error I see. Who are all the users/connections? To me it looks as though there is just me and SYSTEM when I run a service. How to know exactly?? Key problem: too many!
So I gave up trying to do this with SP. a) It uses up connections, b) It doesn't seem to deal with credentials.
Instead I use Vistas scheduler to call by copy script about an hour after SP backup runs. That's time enough for incremtentals . That way there are no SP connections/users.
Then I changed my copy script to this:
net use z: /d
net use z: "\\MYSERVER\ backups" mypassword
robocopy "d:vista backups" z:\ /mir
net use z: /DELETE
pause
NET USE allows me to specify credentials. I did not test if I really need password. "\\MYSERVER\ backups"is a share.
I also have a desktop shortcut to this to test it or repeat at any time manually if something goes wrong.
I find that if I use Windows Explorer to look at any server folder while I am running the copy it fails with "System error 1219 has occurred" "Multiple connections to a server ... by the same user using more than one user name ... are not allowed ..."
Maybe its not the number of connections but the number of users.
Some network expert could probably deduce exactly what is going on and tell me a cleaner way of doing this. But I now have a work around and that's as much time as I care to spend on it myself.
StorageCraft ought to think about this and figure a way to make it work calling from SP backup. Their manual suggests an offsite copy as a good idea. It is not unusual for desktop users to have less than an industrial strength server.