Silently uninstalling Bonjour
Hi all,
I'm trying to uninstall Bonjour on a bunch of machines. That part is fairly easy which I can tackle with either 'mDNSResponder.exe -remove' or the following powershell script
$uninstallString = (Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\windows\CurrentVersion\Uninstall\*' | ?{$_.DisplayName -like "Bonjour"}).UninstallString
if ($uninstallString -ne $null)
{
& cmd /c $uninstallString /quiet /norestart
}
Problem is, the first time itunes then loads it comes up stating 'THe bonjour service cant be found'
I wondering if its possible to remove bonjour without that message coming up.
Thanks
I'm trying to uninstall Bonjour on a bunch of machines. That part is fairly easy which I can tackle with either 'mDNSResponder.exe -remove' or the following powershell script
$uninstallString = (Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\windows\CurrentVersion\Uninstall\*' | ?{$_.DisplayName -like "Bonjour"}).UninstallString
if ($uninstallString -ne $null)
{
& cmd /c $uninstallString /quiet /norestart
}
Problem is, the first time itunes then loads it comes up stating 'THe bonjour service cant be found'
I wondering if its possible to remove bonjour without that message coming up.
Thanks
1 Comment
[ + ] Show comment
-
Another way to tackle this might be to disallow iTunes from running - JasonEgg 8 years ago
Answers (1)
Please log in to answer
Posted by:
SMal.tmcc
8 years ago