Created
June 15, 2020 18:31
-
-
Save eldon/0069e7b10f498bb84c090dc0f59370ca to your computer and use it in GitHub Desktop.
disable globalprotect autolaunch
This file contains hidden or 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 | |
| # # 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