-
- Expert
- Posts: 189
- Liked: 27 times
- Joined: Apr 24, 2013 8:53 pm
- Full Name: Chuck Stevens
- Location: Seattle, WA
- Contact:
Remove Veeam Console without uninstalling everything else
I'm sure the answer to this is in the forum somewhere, but I can't seem to find it.
We're hardening access to the full Veeam Console, and want to remove it from our Veeam B&R servers. How do I go about this without uninstalling the core B&R components?
We're hardening access to the full Veeam Console, and want to remove it from our Veeam B&R servers. How do I go about this without uninstalling the core B&R components?
Veeaming since 2013
-
- Product Manager
- Posts: 9847
- Liked: 2605 times
- Joined: May 13, 2017 4:51 pm
- Full Name: Fabian K.
- Location: Switzerland
- Contact:
Re: Remove Veeam Console without uninstalling everything else
I don‘t think thats supported today or possible out of the box. If you use google, you can find a guide. I won‘t post it publicly here.
Product Management Analyst @ Veeam Software
-
- Expert
- Posts: 189
- Liked: 27 times
- Joined: Apr 24, 2013 8:53 pm
- Full Name: Chuck Stevens
- Location: Seattle, WA
- Contact:
Re: Remove Veeam Console without uninstalling everything else
There is this Best Practices guide. It seems up to date.
Veeaming since 2013
-
- Product Manager
- Posts: 9847
- Liked: 2605 times
- Joined: May 13, 2017 4:51 pm
- Full Name: Fabian K.
- Location: Switzerland
- Contact:
Re: Remove Veeam Console without uninstalling everything else
I know. I have written you a PM
Product Management Analyst @ Veeam Software
-
- Product Manager
- Posts: 20400
- Liked: 2298 times
- Joined: Oct 26, 2012 3:28 pm
- Full Name: Vladimir Eremin
- Contact:
Re: Remove Veeam Console without uninstalling everything else
This guide has been created and is being managed by trustworthy system engineers and architects, so we are not against refencing it here
-
- Novice
- Posts: 3
- Liked: never
- Joined: Dec 23, 2019 4:21 pm
- Full Name: Aniz Daher Neto
- Contact:
Re: Remove Veeam Console without uninstalling everything else
I know this post are from 2021, but I found it when I faced a similar situation, this is the way I workaround it.
In your Veeam Server where do you want to remove the server, create an entry in your hosts file (c:\windows\system32\drivers\etc\hosts) using a dead ip address, make sure to edit as administrator and save.
Test if the ping from your Veeam Server to your infra server (example proxy) is not working.
Go to your Veeam console and remove it from Servers, once your Veeam will not be able to reach the correct server, it will delete your server with warnings.
Starting infrastructure item deletion process
Starting infrastructure item deletion process
<You may see several warnings or errors here>
[YOUR REMOVED SERVER] Failed to uninstall some components. Error: '<Some other errors>'
Warning Server was deleted with warnings
In your Veeam Server where do you want to remove the server, create an entry in your hosts file (c:\windows\system32\drivers\etc\hosts) using a dead ip address, make sure to edit as administrator and save.
Test if the ping from your Veeam Server to your infra server (example proxy) is not working.
Go to your Veeam console and remove it from Servers, once your Veeam will not be able to reach the correct server, it will delete your server with warnings.
Starting infrastructure item deletion process
Starting infrastructure item deletion process
<You may see several warnings or errors here>
[YOUR REMOVED SERVER] Failed to uninstall some components. Error: '<Some other errors>'
Warning Server was deleted with warnings
-
- Enthusiast
- Posts: 97
- Liked: 29 times
- Joined: Mar 16, 2023 5:47 pm
- Contact:
Re: Remove Veeam Console without uninstalling everything else
Follow the hardening guide linked above. I did the same thing when I deployed V12. The Veeam server has no explorers or the Veeam Console. We have a secure jumpbox in a locked down vLAN that runs the console now.
Just remember when you patch Veeam you need to patch and upgrade the console on whatever endpoint you have it on.
I find it very odd Veeam employees in this thread won't reference it. It's a Veeam document. I am confused as to the secrecy here. This should be something everyone does if you want to harden your backup infrastructure.
Just remember when you patch Veeam you need to patch and upgrade the console on whatever endpoint you have it on.
I find it very odd Veeam employees in this thread won't reference it. It's a Veeam document. I am confused as to the secrecy here. This should be something everyone does if you want to harden your backup infrastructure.
-
- Product Manager
- Posts: 9847
- Liked: 2605 times
- Joined: May 13, 2017 4:51 pm
- Full Name: Fabian K.
- Location: Switzerland
- Contact:
Re: Remove Veeam Console without uninstalling everything else
I wasn't working for Veeam back in 2021
Today I'm happy to share the link with any customer.
Best,
Fabian
Today I'm happy to share the link with any customer.
Best,
Fabian
Product Management Analyst @ Veeam Software
-
- Veeam Software
- Posts: 18
- Liked: 8 times
- Joined: Feb 01, 2013 12:56 pm
- Full Name: vChris
- Location: Suisse romande
- Contact:
Re: Remove Veeam Console without uninstalling everything else
Update on this topic: To remove the console you need to remove ALL the explorers first:
Easy to create a small script if needed here
And then remove the console itself:
Code: Select all
(Get-WmiObject Win32_Product -Filter "Name = 'Veeam Explorer for xxxx").Uninstall()
And then remove the console itself:
Code: Select all
(Get-WmiObject Win32_Product -Filter "Name = 'Veeam Backup & Replication Console'").Uninstall()
Knight of the always on
-
- Lurker
- Posts: 1
- Liked: never
- Joined: Oct 11, 2024 12:34 pm
- Full Name: LAINE JASON
- Contact:
Re: Remove Veeam Console without uninstalling everything else
Hi,
To automate the removal of Explorer services and the Console, you can use the following script:
Regards
Jason
To automate the removal of Explorer services and the Console, you can use the following script:
Code: Select all
Write-host "Start removing Explorer and Console services" -BackgroundColor Yellow
# Récupérer les services correspondant aux critères
$services = Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -match "Veeam" -and $_.Name -match "Explorer" }
Write-host "Start Explorer services removal" -BackgroundColor Green
If ($services.lenght -ne $null) {
foreach ($service in $services) {
Write-host "Service deletion: $service.Name" -BackgroundColor Green
$service.Uninstall()
}
}
Else {Write-host "No Explorer service to remove" -BackgroundColor Red}
$console = Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -match "Veeam" -and $_.Name -match "Console" }
If ($console.lenght -ne $null) {
Write-host "Start console service removal" -BackgroundColor Green
$console.Uninstall()
}
Else {Write-host "No Console service to remove" -BackgroundColor Red}
Write-host "End of Explorer and Console services removal" -BackgroundColor Yellow
Jason
Who is online
Users browsing this forum: Asahi, Google [Bot] and 114 guests