Posted on 09-15-2022 03:18 PM
How do I enable Bonjour
I have a script to disable it,
#! /bin/bash
defaults write /Library/Preferences/com.apple.mDNSResponder.plist NoMulticastAdvertisements -bool true
do I just reverse it or delete the .plist file
Solved! Go to Solution.
Posted on 09-15-2022 10:34 PM
To turn it off execute this command:
defaults write /System/Library/LaunchDaemons/com.apple.mDNSResponder ProgramArguments -array-add "-NoMulticastAdvertisements"
To turn it on again:
defaults write /System/Library/LaunchDaemons/com.apple.mDNSResponder ProgramArguments -array "/usr/sbin/mDNSResponder" "-launchd"
Posted on 09-15-2022 10:34 PM
To turn it off execute this command:
defaults write /System/Library/LaunchDaemons/com.apple.mDNSResponder ProgramArguments -array-add "-NoMulticastAdvertisements"
To turn it on again:
defaults write /System/Library/LaunchDaemons/com.apple.mDNSResponder ProgramArguments -array "/usr/sbin/mDNSResponder" "-launchd"
Posted on 11-03-2022 10:35 AM
Not possible with SIP enabled.