- Homepage
-
Veeam & Powershell; Check if jobs are disabled
This little script will check if any of your jobs are disabled on Veeam; This can be quite handy if you planning to check a list of servers. Code: Add-PSSnapin -Name VeeamPSSnapIn -ErrorAction SilentlyContinue Get-VBRJob | where {$_.IsScheduleEnabled -eq $False} | select name, Description It will display something like this in WindosPowershell :
-
Restart VSS Writers Status and Writers table example ( No reboot required )
Hi; Writers can be tricky during backups; Sometimes they can fail and you are required to restart the server in order to make them run again; In order to see the status : Run on any CMD or PowerShell console: Vssadmin list writers : How the writers work: Source: https://docs.microsoft.com/en-us/windows/desktop/vss/overview-of-processing-a-backup-under-vss We will assume for…
-
Veeam: Unable to perform application-aware processing because the connection to the guest could not be established
Hi When getting this error; there are several solutions In my case the destination server had the remote registry service crashed; following the Veeam forums: Make sure the Windows time on the Veeam Backup server is the same as in the guest OS. Make sure you do not have a firewall in the way…
-
Veeam Office365 Backups failing JetError -1022, JET_errDiskIO, Disk IO error Error 0 Duration 0:00:00 Data transferred 0 B Details
Hi team; The only solution to this error that I have found for no is “restart Veeam services or either restart the server itself” You can use the following power shell script for that: Get-process | where {($_.Name -like “Veeam*”)} | stop-process -Force Get-Service | where {($_.Name -like “Veeam*”)-and ($_.Status -eq…
-
Veeam: Timeout: 360.0508351 sec Job has failed unexpectedly Processing Error: Error code: 0x80070008 Cannot initialize COM runtime
This error is due resources exhaustion; Please do investigate what process /service could be causing this; Also make sure you are running on the last Veeam backup & Replication Version
