Here is a little "give back" for this board, as I have received valuable help many times..

Using the oft-posted batch file techniques (example below) for automating NTbackup provided us (after many hours of trial and error by an "old" coder) with a pretty nifty backup solution...only to find that last weekend it QUIT WORKING! Problem? As part of an attempt to chase away a different problem, I had upgraded the firmware in our Seagate DDS3. Without warning me, SBS2k created a "new" drive so all our scripts began failing. Resolution? Used RSM.exe /view to obtain the new drive GUID and pasted that into the scripts. Viola! All is well again...almost. Don't forget to DELETE the "old" drive in the RSM console
---Partial Example--
@echo of
set drvguid=A2FFB9834E2E4401A3E9DFC4739D07D7
FOR /F "usebackq delims==" %%i IN (`rsm view /tphysical_media /cg%drvguid% /guiddisplay /b`) DO set tapeguid=%%
FOR /F "usebackq delims==" %%i IN (`rsm view /tpartition /cg%tapeguid% /guiddisplay /b`) DO set partguid=%%
FOR /F "usebackq delims==" %%i IN (`rsm view /tlogical_media /cg%partguid% /guiddisplay /b`) DO set logguid=%%
---End of Example--
http://www.smallbizserver.net/SBS2000/How_do_I_backup_my_server.asp
http://www.jsiinc.com/SUBE/tip2200/rh2265.ht
http://syneticon.net/service/w2k/ntbackup_en.htm