Is there any way to establish which version of the Veeam powershell modules are installed?
Currently I run the command "Get-Module -ListAvailable Veeam.Backup.PowerShell" and I see no way to distinguish between v11 and v12.
V12 installation:
Code: Select all
PS C:\Users\administrator> Get-Module -ListAvailable Veeam.Backup.PowerShell | Format-List
Name : Veeam.Backup.PowerShell
Path : C:\Program Files\Veeam\Backup and
Replication\Console\Veeam.Backup.PowerShell\Veeam.Backup.PowerShell.psd1
Description : Provides Veeam cmdlets to work with "Veeam Backup And Replication".
ModuleType : Manifest
Version : 1.0
NestedModules : {Veeam.Backup.PowerShell}
ExportedFunctions :
ExportedCmdlets : {Add-VBRBackupCopyJob, Get-VBRBackupCopyJob, Set-VBRBackupCopyJob, Copy-VBRBackupCopyJob...}
ExportedVariables :
ExportedAliases : {Set-VBRGFSYearlyOptions, Set-VBRGFSWeeklyOptions, Set-VBRGFSMonthlyOptions, Set-VBRGFSOptions...}
PS C:\Users\administrator>
Code: Select all
PS C:\Users\jocolon> Get-Module -ListAvailable Veeam.Backup.PowerShell | Format-List
Name : Veeam.Backup.PowerShell
Path : C:\Program Files\Veeam\Backup and Replication\Console\Veeam.Backup.PowerShell\Veeam.Backup.PowerShell.psd1
Description : Provides Veeam cmdlets to work with "Veeam Backup And Replication".
ModuleType : Manifest
Version : 1.0
NestedModules : {Veeam.Backup.PowerShell}
ExportedFunctions :
ExportedCmdlets : {Get-VBRComputerFileProxyServer, New-VBRSanIntegrationOptions, New-VBRSelectedPersonalFolders, New-VBRUnixScheduleOptions...}
ExportedVariables :
ExportedAliases : {Set-VBRHPStorage, Add-VBRHPSnapshot, Add-VBRHPStorage, Get-VBRHPCluster...}
PS C:\Users\jocolon>
Regards