Skip to content

Instantly share code, notes, and snippets.

@tcelestino
Last active February 12, 2023 02:46
Show Gist options
  • Save tcelestino/5d5edfcfa4c07581610b010b148eec3c to your computer and use it in GitHub Desktop.
Save tcelestino/5d5edfcfa4c07581610b010b148eec3c to your computer and use it in GitHub Desktop.
disable autostart Checkpoint's VPN on macOS

How can I stop Checkpoint's VPN program from automatically starting on my Mac? Then how do start it manually

To stop it from starting automatically, edit /Library/LaunchAgents/com.checkpoint.eps.gui.plist and change:

<key>RunAtLoad</key>
<true/>

To:

<key>RunAtLoad</key>
<false/>
@2ndMessiah
Copy link

<key>RunAtLoad</key> <off/>

instead

<key>RunAtLoad</key> <false/>

at /Library/LaunchAgents/com.checkpoint.eps.gui.plist

prevent autostart

This is the right answer!
Appreciate it and spread it!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment