Skip to content

Instantly share code, notes, and snippets.

@ryu1
Last active May 13, 2022 06:36
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryu1/b9e8a586d11cc69f17758b2ee9467e4b to your computer and use it in GitHub Desktop.
Save ryu1/b9e8a586d11cc69f17758b2ee9467e4b to your computer and use it in GitHub Desktop.
ESET セキュリティソフトの有効/無効

ESET セキュリティソフトの有効/無効

ときおり、邪魔になるセキュリティソフトを一時的に無効にしたいときに使用する.

Disable

$ sudo killall esets_gui
$ sudo launchctl unload /Library/LaunchDaemons/com.eset.esets_daemon.plist
$ sudo launchctl unload /Library/LaunchDaemons/com.eset.esets_pidmapper.plist
$ sudo launchctl unload /Library/LaunchDaemons/com.eset.remoteadministrator.agent_daemon.plist

$ sudo launchctl unload /Library/LaunchAgents/com.eset.esets_gui.plist
$ sudo launchctl unload /Library/LaunchAgents/com.eset.firewall.prompt.plist
$ sudo launchctl unload /Library/LaunchDaemons/com.eset.esets_daemon.plist
$ sudo launchctl unload /Library/LaunchDaemons/com.eset.remoteadministrator.agent_daemon.plist

Enable

$ sudo launchctl load /Library/LaunchDaemons/com.eset.esets_daemon.plist
$ sudo launchctl load /Library/LaunchDaemons/com.eset.esets_pidmapper.plist
$ sudo launchctl load /Library/LaunchDaemons/com.eset.remoteadministrator.agent_daemon.plist
$ open -a “/Applications/ESET Endpoint Antivirus.app”
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment