Created
July 1, 2020 16:05
-
-
Save rgdevment/b0732fb7bc2665b81fe5e8be78dbe0aa to your computer and use it in GitHub Desktop.
[Uninstall Trend] uninstall trend on macos #Antivirus #Trend
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
#!/bin/sh | |
launchctl unload /Library/LaunchDaemons/com.trendmicro.icore.av.plist | |
rm /Library/LaunchDaemons/com.trendmicro.* | |
rm -r "/Library/Application Support/TrendMicro" | |
rm -r /Library/Frameworks/TMAppCommon.framework | |
rm -r /Library/Frameworks/TMAppCore.framework | |
rm -r /Library/Frameworks/TMGUIUtil.framework | |
rm -r /Library/Frameworks/iCoreClient.framework | |
rm -r /Applications/TrendMicroSecurity.app | |
killall -kill TmLoginMgr | |
killall -kill UIMgmt | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment