Skip to content

Instantly share code, notes, and snippets.

@tegansnyder
Last active October 29, 2024 13:49
Show Gist options
  • Save tegansnyder/f8d4f3f283e1df26cf86 to your computer and use it in GitHub Desktop.
Save tegansnyder/f8d4f3f283e1df26cf86 to your computer and use it in GitHub Desktop.

Revisions

  1. tegansnyder revised this gist Aug 14, 2015. 1 changed file with 8 additions and 1 deletion.
    9 changes: 8 additions & 1 deletion disable mcafee endpoint protection.md
    Original file line number Diff line number Diff line change
    @@ -8,4 +8,11 @@ sudo /usr/local/McAfee/AntiMalware/VSControl stopoas
    sudo defaults write /Library/Preferences/com.mcafee.ssm.antimalware.plist OAS_Enable -bool False
    sudo /usr/local/McAfee/AntiMalware/VSControl stop
    sudo /usr/local/McAfee/AntiMalware/VSControl reload
    ```
    ```

    Or completely uninstall:
    ```bash
    sudo -s
    cd /usr/local/McAfee/
    ./uninstall EPM
    ```
  2. tegansnyder created this gist Aug 12, 2015.
    11 changes: 11 additions & 0 deletions disable mcafee endpoint protection.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    ### method 1
    ```bash
    sudo /usr/local/McAfee/AntiMalware/VSControl stopoas
    ```

    ### alternatively
    ```bash
    sudo defaults write /Library/Preferences/com.mcafee.ssm.antimalware.plist OAS_Enable -bool False
    sudo /usr/local/McAfee/AntiMalware/VSControl stop
    sudo /usr/local/McAfee/AntiMalware/VSControl reload
    ```