Here is my script that I use for automated (scheduled) backup.
<SNIP>
option explicit
' backup path (with trailing "/")
const cBackupPath = "D:\your\backup\path\"
' Extension for backup file
const cBackupExtension = ".bak"
' full path to MSDMBack
const cUtilPathAndName = "D:\your\path\to\MSDMBack.vbs"
dim mYear
dim mMonth
dim mDay
dim mHour
dim mMinute
dim mFile
'needed to run the script in a shell
dim wsh
'Determine date and time
mYear = year(now)
mMonth = right("00" & month(now), 2)
mDay = right("00" & day(now), 2)
mHour = right("00" & hour(now), 2)
mMinute = right("00" & minute(now), 2)
'Assemble backup file name
mFile = mYear
mFile = mFile & "-" & mMonth
mFile = mFile & "-" & mDay
mFile = mFile & "_" & mHour
mFile = mFile & "-" & mMinute
mFile = mFile & cBackupExtension
set wsh = wscript.CreateObject("wscript.shell")
' Open a shell and run the script with cscript
wsh.run "cscript """ & cUtilPathAndName & """ /b " & cBackupPath & _
mFile
</SNIP>
> Is there a way to do an incremental update??? I guess the msdmback does a
> full backup, am I right???
No, this is not possible.
You can only do full backups of the whole SPS, including all
workspaces.