You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `RunVBRJob.ps1` script starts a specified Veeam Backup and Replication job and retrieves its result. It allows passing additional options to the `Start-VBRJob` cmdlet and uses a configuration file (`settings.ps1`) for global settings. It is designed with external monitoring systems and job schedulers in mind, making it suitable for automated workflows.
122
+
The `RunVBRJob.ps1` script starts a specified Veeam Backup and Replication job and retrieves its result. It uses a configuration file (`settings.ps1`) for global settings. It is also designed to work in conjunction with external monitoring systems and job schedulers, making it suitable for automated workflows.
123
123
124
124
#### Key Features
125
125
- Starts a VBR job and retrieves its result.
126
-
- Logs job execution details to a file.
126
+
- Logs job execution summary and result status to a file.
127
127
- Supports passing additional options to the `Start-VBRJob` cmdlet via the `-VBRJobOpt` parameter.
128
-
- Can use a custom configuration file for global settings.
128
+
- Can use different global configuration file for individual or groups of execution.
129
129
- Integrates seamlessly with external monitoring systems and job schedulers for automated task management.
130
130
131
131
#### Parameters
@@ -159,7 +159,7 @@ $Set_Log = 'vbrjob.log'
159
159
-`0`: Job finished with "Success" status.
160
160
-`1`: Job finished with "Failed" status.
161
161
-`2`: Job finished with "Warning" status.
162
-
-`4`: The job has never been run yet ("None" status).
162
+
-`4`: No job record is available or pending ("None" status).
163
163
-`8`: Unknown status.
164
164
- Other: Errors such as non-existent job name or syntax issues.
0 commit comments