Last active
December 14, 2022 07:59
-
-
Save zthxxx/607b8793885197ff61fb79a3d9db25cb to your computer and use it in GitHub Desktop.
stop and kill Symantec daemon on macOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# curl -o- https://gist.githubusercontent.com/zthxxx/607b8793885197ff61fb79a3d9db25cb/raw/kill-SymDaemon.sh | bash | |
launchctl unload /Library/LaunchAgents/com.symantec.uiagent.application.*plist | |
sudo launchctl unload /Library/LaunchDaemons/com.symantec.*.plist | |
sudo rm -rf /Library/LaunchAgents/com.symantec.uiagent.application.*plist /Library/LaunchDaemons/com.symantec.*.plist | |
ps -ef | grep -i symantec | |
sudo launchctl unload /Library/LaunchDaemons/com.googlecode.munki.* | |
sudo launchctl unload /Library/LaunchAgents/com.googlecode.munki.* | |
sudo launchctl unload /Library/LaunchDaemons/com.grahamgilbert.crypt* | |
sudo rm -rf /Library/LaunchDaemons/com.googlecode.munki.* | |
sudo rm -rf /Library/LaunchAgents/com.googlecode.munki.* | |
sudo rm -rf /usr/local/munki /Library/umad | |
# config: /etc/puppetlabs/puppet/puppet.conf | |
# log: /var/log/puppetlabs/puppet/puppet.log | |
sudo pkgutil --forget com.puppetlabs.puppet-agent | |
sudo launchctl unload /Library/LaunchDaemons/com.puppetlabs.* | |
sudo launchctl unload /Library/LaunchAgents/com.puppetlabs.* | |
sudo rm -rf /Library/LaunchDaemons/com.puppetlabs.* | |
sudo rm -rf /Library/LaunchAgents/com.puppetlabs.* | |
sudo rm -rf /etc/puppetlabs | |
sudo rm -rf /opt/puppetlabs | |
sudo pkgutil --forget com.erikng.umad | |
sudo pkgutil --forget com.erikng.umad-cn | |
sudo launchctl unload /Library/LaunchDaemons/com.erikng.umad.* | |
sudo launchctl unload /Library/LaunchAgents/com.erikng.umad.* | |
sudo rm -rf /Library/LaunchDaemons/com.erikng.umad.* | |
sudo rm -rf /Library/LaunchAgents/com.erikng.umad.* | |
sudo rm -rf /Library/umad | |
# https://github.com/grahamgilbert/crypt | |
sudo launchctl unload /Library/LaunchDaemons/com.grahamgilbert.crypt* | |
sudo pkgutil --forget com.grahamgilbert.Crypt | |
sudo rm -rf /Library/LaunchDaemons/com.grahamgilbert.crypt* | |
sudo rm -rf /Library/Crypt | |
sudo rm -rf /Library/Security/SecurityAgentPlugins/Crypt.bundle | |
sudo rm -rf /usr/local/munki | |
sudo pkgutil --pkgs | grep edance | |
echo 'sudo pkgutil --forget xxx.xxx' | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment