New version of AsBuiltReport.Veeam.VBR v0.8.13

Hola, Recently, I have made several changes to the AsBuiltReport.Veeam.VBR script, so I will summarize here all the new capabilities added. Here is the link to the most recent report in HTML format: Report The first change I will discuss is the support for Microsoft Entra ID. In this case the Veeam Backup & Replication (VBR) Powershell module allows extracting the information of the Tenants that are configured in the VBR infrastructure. ...

December 11, 2024 · 2 min · Jon Colon

New version of Veeam.Diagrammer v0.6.8

Hola, Today I am going to share the improvements I have made to the Veeam Backup & Replication infrastructure diagramming tool. This tool uses Graphviz as the engine to draw the diagram and the PSGraph module to generate the code from PowerShell. Here is the link to the project on GitHub: https://github.com/rebelinux/Veeam.Diagrammer In version 0.6.8 information about SureBackup was added to the infrastructure diagram. In particular, the ability to diagram Application Groups and Virtual Labs has been added. ...

September 24, 2024 · 1 min · Jon Colon

Veeam: Getting information from WAN Accelerators with Powershell

Hello everyone, These last days I have been developing several scripts related to Veeam Backup & Replication where I have had the opportunity to use more the Powershell modules of Veeam. So in this opportunity I will be showing you in a basic way how to get information related to the WAN accelerators configured on the Backup server. As always it is necessary to establish connection with the Backup server using the Connect-VBRServer command. ...

September 22, 2024 · 4 min · Jonathan Colon

Diagramming the Veeam Backup & Replication Infrastructure.

Hello, In the latest version of Veeam.Diagrammer I added the ability to diagram the Veeam Backup & Replication infrastructure. Here is the link to the tool: https://github.com/rebelinux/Veeam.Diagrammer Previously, this diagram could only be accessed through the AsbuiltReport.Veeam.VBR report. Now in version v0.6.4 you can generate this infrastructure diagram with Veeam.Diagrammer directly. Here is an example of the diagram: In the following video I attempt to show you how to install and use this tool: ...

September 10, 2024 · 1 min · Jon Colon

Veeam.Diagrammer v0.6.1 new version features

Hola, I will be sharing today the improvements I have made to the Veeam Backup & Replication infrastructure diagramming tool. This tool uses Graphviz as the engine to draw the diagram and PSGraph module to generate the code from PowerShell. Here is the link to the project on GitHub. https://github.com/rebelinux/Veeam.Diagrammer This tool is used within the AsbuiltReport.Veeam.VBR report to generate the diagram of the following components: - VMware and Hyper-V Proxy - Tape Infrastructure - Backup Repositories - SOBR repositories - Wan Accelerators - etc.. In version 0.6.1 the NAS type repositories (SMB and NFS) were added to the diagram, which before this version had not been defined in the code. ...

September 2, 2024 · 2 min · Jon Colon

New Release of AsBuiltReport.Veeam.VBR v0.8.8

Hola, Last month I added several enhancements to the AsBuiltReport.Veeam.VBR report to improve its content as well as adding more infrastructure objects to the diagram. Here is the link to the report in HTML format: Report In version v0.8.6 the ability to generate a simple diagram of the Veeam Backup & Replication infrastructure was added. In the last version of the diagram only the following components are shown: - Backup Server - Database Server - Enterprise Manager - Proxy Servers - Backup Repositories - Object Storage Repositories - Archive Object Storage Repositories - Scale-Out Backup Repositories - Wan Accelerators In the new version of the report v0.8.8 was added the ability to display objects related to: ...

August 24, 2024 · 1 min · Jon Colon

New version release of the AsBuiltReport.Veeam.VB365 report v0.3.2

Hola, A few months ago, I worked on several changes I made to the AsBuiltReport.Veeam.VB365 report to add support for the Best Practice that was created by the group 4 of the Veeam Community Hackathon 2023 event. Team 4 created several recommendations as best practices on the implementation of Veeam Backup for Microsoft 365, you can watch the video of the event at this link: ...

May 27, 2024 · 2 min · Jon Colon

New Release of AsBuiltReport.Veeam.VBR v0.8.6

On this occasion I will be talking about several enhancements I have been making to improve the AsBuiltReport.Veeam.VBR script. Here is the link to the report in HTML format: Sample Report A request made by a user was to add a health check to verify the expiration of the Tenant access account in Cloud Connect. Another aspect that was added to the report was to capture vCloud Director resources within the Service Providers section. ...

April 29, 2024 · 3 min · Jon Colon

HomeLab: Veeam VBR Documentation with AsBuiltReport

Hello everyone! I took on the task of developing yet another report, yes yet another one 🤣 and it is related to the documentation of Veeam Backup & Replication implementations in specific for version 12+ onwards. This report is based on the AsBuildReport framework which is a project created by Tim Carman . The source code of the report can be found in GitHub here I leave the link so you can see the scope of the project. ...

February 20, 2024 · 9 min · Jon Colon

Veeam: Powershell get Backup Proxies Information

Hello friends, In this opportunity I will be showing you how to obtain Backup Proxy related information from PowerShell in a Veeam Backup & Replication infrastructure. To begin with it is necessary to establish the initial connection to the Backup Server using the Connect-VBRServer command. In my case the FQDN of my Backup Server is veeam-vbr.pharmax.local. PS C:\Users\jocolon> Connect-VBRServer -Server veeam-vbr.pharmax.local -Credential (Get-Credential) cmdlet Get-Credential at command pipeline position 1 Supply values for the following parameters: User: pharmax\administrator Password for user pharmax\administrator: ```` PS C:\Users\jocolon> After connecting to the server you can use the Get-VBRViProxy cmdlet to identify which Backup Proxy servers are in your infrastructure. ...

July 10, 2021 · 3 min · Jon Colon