adding 2 more locations to a backup script

R

Roland

Hi I've got this backup script that I need to update and can't find my
scripting resource manual. So I'm hoping some guru can help me out.
This is my current backup script

rsm.exe refresh /LF"ARCHIVE Python 06408-XXX SCSI Sequential Device"
sleep 30
NTBACKUP BACKUP SYSTEMSTATE Q:\ /P "4mm DDS" /d "daily backup of Q drive"
/v:yes /m normal /hc:blush:n /um
NET START SERVER
CALL C:\WINNT\TAPEEJECT.CMD

I'd also like to backup the U: drive and the MY Documents folder on this
file server. My question is where do I add these locations to on my script.
Your help would be greatly appreciated.

Thanks.
 
J

Jerold Schulman

Hi I've got this backup script that I need to update and can't find my
scripting resource manual. So I'm hoping some guru can help me out.
This is my current backup script

rsm.exe refresh /LF"ARCHIVE Python 06408-XXX SCSI Sequential Device"
sleep 30
NTBACKUP BACKUP SYSTEMSTATE Q:\ /P "4mm DDS" /d "daily backup of Q drive"
/v:yes /m normal /hc:blush:n /um
NET START SERVER
CALL C:\WINNT\TAPEEJECT.CMD

I'd also like to backup the U: drive and the MY Documents folder on this
file server. My question is where do I add these locations to on my script.
Your help would be greatly appreciated.

Thanks.

rsm.exe refresh /LF"ARCHIVE Python 06408-XXX SCSI Sequential Device"
sleep 30
subst X: "c:\documents and settings"
NTBACKUP BACKUP SYSTEMSTATE Q:\ U:\ X:\ /P "4mm DDS" /d "daily backup of Q drive" /v:yes /m normal /hc:blush:n /um
subst X: /D
NET START SERVER
CALL C:\WINNT\TAPEEJECT.CMD
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top