How do I get job information in Windows Azure Backup Agent?

I have installed the Windows Azure Backup Agent and am creating a scheduled backup. When a scheduled backup is done and completed, I get an email notification using the task scheduler, event log and powershell stating that the backup was successful, with warnings or errors. It works, but I want to include in my email address information about the job, such as the items and size of the backup files, the duration of the execution, the reason for the warnings and errors, etc. I only have this code to get the path of the file to be backed up.

(Get-OBPolicy | get-OBFileSpec | Where-Object {$_.IsExclude -eq $False}).FileSpec

      

It will generate something like this C:\Program Files

, C:\Temp

.

Please help me or give me a useful link that I can use. Thank.

+3


source to share





All Articles