Skip to content

Instantly share code, notes, and snippets.

@tcelestino
Last active February 12, 2023 02:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • 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/>
@mfortunat
Copy link

Unfortunately, it does not prevent the app to start at every reboot.

@jacomogrelli
Copy link

jacomogrelli commented Sep 1, 2022

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

instead

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

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

prevent autostart

@salvatorelaspata
Copy link

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

instead

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

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

prevent autostart

Hi

This solution solved the problem to prevent startup of VPN after reboot on my mac.

Thank You @jacomogrelli
🙏

@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