Last active
January 5, 2024 00:37
-
-
Save fevangelou/2628146 to your computer and use it in GitHub Desktop.
Disable autostart of the NCP Secure Entry macOS application
This file contains 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
This is a tip for NCP Secure Entry macOS Client originally created in 2012, | |
so it may not apply to recent versions... | |
As of Jan 2024, NCP Secure Entry macOS Client is available here: | |
https://www.ncp-e.com/en/service-resources/download-vpn-client | |
https://software.ncp-e.com/NCP_Secure_Entry_Client/macOS/ (older releases) | |
So, on to the issue... | |
To disable the autostart of the NCP Secure Entry Mac Client GUI application on a Mac, just edit the /Library/LaunchAgents/com.ncp-e.ncpmon.plist file and set the value "RunAtLoad" to "false" (from "true"). It's faster to do it via command-line, like this: | |
$ sudo nano /Library/LaunchAgents/com.ncp-e.ncpmon.plist | |
Then move the cursor right below the line containing "RunAtLoad" and change true to false. | |
To save the file, hit: | |
Cmd+X, Y, Enter | |
Ready! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@muuvmuuv You're welcome :)