Hello,
so you need a scipt like this here:
Script:: backup-snap.cmd Parameter: $SqlSnapshot $InfoSnapshot
===================== Script Begin ==============================
REM Mount a LUN backed by the Snapshot copy
REM database as drive letter k:\ to m:\. k=database, l=logs,m=snapinfo
sdclisnap mount -k i -s %1 -d k
sleep5
sdclisnap mount -k f -s %1 -d l
sleep5
sdclisnap mount -k g -s %2 -d m
sleep5
REM Use BackupExecClient to back up the database files and Logs.
backupexecclient everthing under "K:\MSSQL\*"
backupexecclient everthing under"L:\MSSQL\*"
backupexecclient everthing under"M:\SMSQL_SnapInfo\*"
REM Dismount the Snapshot copy mounted as drive letter K:\ to M:\.
REM The below example is shown with an optional parameter (-f)
REM to forcefully disconnect the drive letter.
sdclisnap unmount -d k -f
sleep5
sdclisnap unmount -d l -f
sleep5
sdclisnap unmount -d m -f
sleep5
===================== Script End ==============================
//Patrik