Skip to content

Instantly share code, notes, and snippets.

@eldon
Created June 15, 2020 18:31
Show Gist options
  • Select an option

  • Save eldon/0069e7b10f498bb84c090dc0f59370ca to your computer and use it in GitHub Desktop.

Select an option

Save eldon/0069e7b10f498bb84c090dc0f59370ca to your computer and use it in GitHub Desktop.
disable globalprotect autolaunch
#!/bin/sh
# # Script to disable GlobalProtect VPN from launching at logon in the LaunchAgents
# Thanks to David Schwartz: https://berkeley.service-now.com/kb_view.do?sysparm_article=KB0012481
defaults write /Library/LaunchAgents/com.paloaltonetworks.gp.pangpa.plist "RunAtLoad" -bool false
defaults write /Library/LaunchAgents/com.paloaltonetworks.gp.pangpa.plist "KeepAlive" -bool false
defaults write /Library/LaunchAgents/com.paloaltonetworks.gp.pangps.plist "RunAtLoad" -bool false
# exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment