<< back to sysax.com Product page

7.3. Verifying Backup

The IsBackupSuccess method can be used to determine if a backup operation initiated by the BackupRun or BackupRunV methods was successful.

Exhibit 7.5. IDL Definition of method for verifying backup


HRESULT IsBackupSuccess    ([out, retval] VARIANT_BOOL *f_is_success);


Exhibit 7.6. Example usage of method for verifying backup (VBScript)


'check if the backup operation was successful
If app.IsBackupSuccess Then
  'backup was successful
End If