Single production datacenter backup copy to Veeam Data Cloud Vault - 5,000 VMs
You need to completely uninstall VBR and all of its components.
What is a fast command line method to list all of the Installed components?
I use this when check the customer environment:
get-wmiObject -Class Win32_Product | where vendor -eq "Veeam Software Group GmbH" | select Name, Version > C:\temp\installed_packages.txt
UPDATE:
this is an example of output
i think this code should work (i tested it briefly)
Get-CimInstance -ClassName Win32_Product | Where-Object { $_.Name -like "*Veeam*" } | Select-Object Name, Version
I could not find a simpler way to do it 🤔
You could also use PowerShell for this -
Get-Package *Veeam*
wmic product list brief > C:\temp\installed.txt
an alternative is also this command, but it pulls out all the packages installed on the server. but gives you the code to uninstall them individually.
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
Sorry, we're still checking this file's contents to make sure it's safe to download. Please try again in a few minutes.
Sorry, our virus scanner detected that this file isn't safe to download.