Skip to main content

New release of the Veeam Backup & Replication report. Many new features and improvements.

 

The most prominent feature is the ability to report on the configuration of VMware Cloud Director backup jobs!

https://github.com/AsBuiltReport/AsBuiltReport.Veeam.VBR

 

## [0.8.14] - 2025-01-30

### Added

- Add support for VMWare Cloud Director backup jobs
- Add option to set the RoundUnits of the storage usages

### Changed

- Storage units in the report are set to 1 round by default
- Increase AsBuiltReport.Core to v1.4.2

### Fixed

- Fix [#197](https://github.com/AsBuiltReport/AsBuiltReport.Veeam.VBR/issues/197)
- Fix [#198](https://github.com/AsBuiltReport/AsBuiltReport.Veeam.VBR/issues/198)

 

¡Hasta la Próxima!

Nice to see vCloud backups in there. Great work. 👍 


Hey Jonathan,

 

I can’t seem to run diagrams directly from the AsBuiltReport module, the options don’t appear to load.

When I attempt to create diagrams using the lasted Diagrammer module they all fail with various dot.exe syntax errors, if this an error unique to me?


Hey Jonathan,

 

I can’t seem to run diagrams directly from the AsBuiltReport module, the options don’t appear to load.

When I attempt to create diagrams using the lasted Diagrammer module they all fail with various dot.exe syntax errors, if this an error unique to me?

 

Could you send me the log so that I can identify where the fault is?

To do this it is needed to run the script with the debug option enabled in powershell using the following commands:

Enable powershell debugging:

$global:VerbosePreference = 'Continue'
$global:DebugPreference = 'Continue'
Start-Transcript -Path .\Output.log
New-VeeamDiagram -Target <-- change this part -->
Stop-Transcript

The commands generate the Output.log file which you can send to me at:

jcolonf@zenprsolutions.com

After saving the log, reset powershell to default settings:

$global:VerbosePreference = 'SilentlyContinue'
$global:DebugPreference = 'SilentlyContinue'

 


New release of the Veeam Backup & Replication report. Many new features and improvements.

 

The most prominent feature is the ability to report on the configuration of VMware Cloud Director backup jobs!

https://github.com/AsBuiltReport/AsBuiltReport.Veeam.VBR

 

## [0.8.14] - 2025-01-30

### Added

- Add support for VMWare Cloud Director backup jobs
- Add option to set the RoundUnits of the storage usages

### Changed

- Storage units in the report are set to 1 round by default
- Increase AsBuiltReport.Core to v1.4.2

### Fixed

- Fix [#197](https://github.com/AsBuiltReport/AsBuiltReport.Veeam.VBR/issues/197)
- Fix [#198](https://github.com/AsBuiltReport/AsBuiltReport.Veeam.VBR/issues/198)

 

¡Hasta la Próxima!

Hello,

 

Thanks for this wonderfull tool :) 

I like it a lot.

However, not sure to understand your message on your github and this update ^^ . You write you will not anymore update the script and you did an update yesterday.

Did you wrote the message yesterday too ?


New release of the Veeam Backup & Replication report. Many new features and improvements.

 

The most prominent feature is the ability to report on the configuration of VMware Cloud Director backup jobs!

https://github.com/AsBuiltReport/AsBuiltReport.Veeam.VBR

 

## [0.8.14] - 2025-01-30

### Added

- Add support for VMWare Cloud Director backup jobs
- Add option to set the RoundUnits of the storage usages

### Changed

- Storage units in the report are set to 1 round by default
- Increase AsBuiltReport.Core to v1.4.2

### Fixed

- Fix [#197](https://github.com/AsBuiltReport/AsBuiltReport.Veeam.VBR/issues/197)
- Fix [#198](https://github.com/AsBuiltReport/AsBuiltReport.Veeam.VBR/issues/198)

 

¡Hasta la Próxima!

Hello,

 

Thanks for this wonderfull tool :) 

I like it a lot.

However, not sure to understand your message on your github and this update ^^ . You write you will not anymore update the script and you did an update yesterday.

Did you wrote the message yesterday too ?

The message remains in effect...


Thank you ​@jcolonfzenpr for continue improving this project !
​​​​​@JamesD try with this procedure:

Uninstall-Module PScriboCharts -Force 
Uninstall-Module AsBuiltReport.Veeam.VBR -force
Uninstall-Module AsBuiltReport.core -force
Install-Module AsBuiltReport.core -force
Install-Module AsBuiltReport.Veeam.VBR -force

Update-Module Diagrammer.core -force
Update-Module Veeam.Diagrammer -force
Import-Module Diagrammer.Core -Force
Import-Module Veeam.Diagrammer -Force

On my installation work every update !


Thank you ​@jcolonfzenpr for continue improving this project !
​​​​​@JamesD try with this procedure:

Uninstall-Module PScriboCharts -Force 
Uninstall-Module AsBuiltReport.Veeam.VBR -force
Uninstall-Module AsBuiltReport.core -force
Install-Module AsBuiltReport.core -force
Install-Module AsBuiltReport.Veeam.VBR -force

Update-Module Diagrammer.core -force
Update-Module Veeam.Diagrammer -force
Import-Module Diagrammer.Core -Force
Import-Module Veeam.Diagrammer -Force

On my installation work every update !

That fixed my issues, thanks a ton!


Hello ​@jcolonfzenpr 

thanks for your fantaastic tool.

I’ve a question for you. For an offline installation because vm hasn’t internet connection, is possible to create a single package with all modules? 

Thanks 


Hello ​@jcolonfzenpr 

thanks for your fantaastic tool.

I’ve a question for you. For an offline installation because vm hasn’t internet connection, is possible to create a single package with all modules? 

Thanks 

@Andanet I use a dedicated VM with all packages installed and after made offline from internet access.


Hello ​@jcolonfzenpr 

thanks for your fantaastic tool.

I’ve a question for you. For an offline installation because vm hasn’t internet connection, is possible to create a single package with all modules? 

Thanks 

Hello,

I didn’t test but you can try this ($ExportPath folder must exists) from a computer with an internet connection and get all the C:\temp content to your offline computer and paste it there C:\Program Files\WindowsPowerShell\Modules

 

$ExportPath = "c:\temp"
$Modules = "AsBuiltReport.Core",
"Diagrammer.Core",
"PScribo",
"PScriboCharts",
"PSGraph",
"Veeam.Diagrammer",
"AsBuiltReport.Veeam.VBR"

Install-Module -name $Modules -Force -SkipPublisherCheck

Save-Module -Name $Modules -Path $ExportPath

Then you can try the cmdlet to generate the report.


Hello ​@jcolonfzenpr 

thanks for your fantaastic tool.

I’ve a question for you. For an offline installation because vm hasn’t internet connection, is possible to create a single package with all modules? 

Thanks 

@Andanet I use a dedicated VM with all packages installed and after made offline from internet access.

Thanks Marco but in our client environment is not possibile to have any "no approved" VM.


Hello ​@jcolonfzenpr 

thanks for your fantaastic tool.

I’ve a question for you. For an offline installation because vm hasn’t internet connection, is possible to create a single package with all modules? 

Thanks 

Hello,

I didn’t test but you can try this ($ExportPath folder must exists) from a computer with an internet connection and get all the C:\temp content to your offline computer and paste it there C:\Program Files\WindowsPowerShell\Modules

 

$ExportPath = "c:\temp"
$Modules = "AsBuiltReport.Core",
"Diagrammer.Core",
"PScribo",
"PScriboCharts",
"PSGraph",
"Veeam.Diagrammer",
"AsBuiltReport.Veeam.VBR"

Install-Module -name $Modules -Force -SkipPublisherCheck

Save-Module -Name $Modules -Path $ExportPath

Then you can try the cmdlet to generate the report.

Great idea ​@damien commenge . Tomorrow I'll try it.