← Back to list

Uninstall Netskope without password

First, go to System Settings > General > Login Items & Extensions > Endpoint Security Extensions, and manually disable the Netskope…

La Clementine · 2025-07-08 20:55 · 0 claps · 0.7 min read
#script #jamf #netskope #bash #mac
Open on Medium ↗
Wiki topics: FT · Fine-tuning & Adaptation GEN · Genomics & Sequencing

Uninstall Netskope without password

First, go to System Settings > General > Login Items & Extensions > Endpoint Security Extensions, and manually disable the Netskope extension. Then, run the following script in sudoer.

For context, the uninstall password I had didn’t work for some reason, so I had to find a way to completely nuke it from the Mac I was troubleshooting.

#!/bin/sh

###
#
#          Created by : La Clémentine · https://medium.com/@laclementine/
#        Date Created : 2025-07-06
#       Date Modified : 2025-07-06
#           Tested on : macOS 15.5
#             Version : 1.0
#
###

# First, go to System Settings > General > Login Items & Extensions
# > Endpoint Security Extensions, and manually disable the Netskope extension.

# Unload LaunchDaemons
launchctl unload "/Library/LaunchDaemons/com.netskope.client.auxsvc.plist"
launchctl unload "/Library/LaunchDaemons/com.netskope.epdlp.client.plist"

# Terminate Netskope processes
pkill "Netskope"

# Remove Netskope files
rm -fv "/Library/LaunchAgents/com.netskope.stagentui.plist"
rm -fv "/Library/LaunchDaemons/com.netskope.client.auxsvc.plist"
rm -fv "/Library/LaunchDaemons/com.netskope.epdlp.client.plist"
rm -rfv "/Applications/Netskope Client.app"
rm -rfv "/Applications/Remove Netskope Client.app"
rm -rfv "/Library/Application Support/Netskope"

# Forget Netskope installation
pkgutil --forget "comnetskopestagentui.pkg"
pkgutil --forget "com.netskope.STAgent.pkg"

exit 0
# All my scripts must be executable and run with sudo
chmod +x example.sh
sudo example.sh

메타데이터
post_id
69dca89ea8e1
slug
uninstall-netskope-without-password-69dca89ea8e1
url
https://medium.com/@laclementine/uninstall-netskope-without-password-69dca89ea8e1
canonical_url
https://medium.com/@laclementine/uninstall-netskope-without-password-69dca89ea8e1
author_url
https://medium.com/@laclementine
status
ok
fetched_at
2026-07-19 02:25:47