Skip to content

Instantly share code, notes, and snippets.

@imesut
Created January 23, 2026 15:13
Show Gist options
  • Select an option

  • Save imesut/c9a4b71a6ccb7051586d9c572eafa9ee to your computer and use it in GitHub Desktop.

Select an option

Save imesut/c9a4b71a6ccb7051586d9c572eafa9ee to your computer and use it in GitHub Desktop.
Disable Forcepoint Agent on Mac (Requires Admin Rights)
#Manuel
#launchctl list | grep force
#launchctl stop com.forcepoint.one.endpoint.ui.helper
#sudo launchctl disable system/com.forcepoint.one.endpoint.ui.helper
#ps aux | grep "force"
# Buradan id'yi aldık
#sudo kill -9 56149
#Otomatik
sudo launchctl disable system/com.forcepoint.one.endpoint.ui.helper
ps aux | grep "forcepoint" | awk '{print $2}' | xargs sudo kill -9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment