Skip to content

Instantly share code, notes, and snippets.

View darylsze's full-sized avatar

darylsze

  • Hong Kong
View GitHub Profile
@darylsze
darylsze / uninstall-netskope.sh
Created August 1, 2022 07:34 — forked from dongri/uninstall-netskope.sh
uninstall netskope
#!/bin/sh
sudo ps aux | grep Netskope | grep -v grep | awk '{ print "kill -9", $2 }' | sudo sh
echo '[✓] Kill Netskope Process'
sudo rm -rf /Applications/Remove\ Netskope\ Client.app
echo '[✓] Removed Remove Netskope Client.app'
sudo rm -rf /Library/Application\ Support/Netskope
echo '[✓] Removed Agent of Netskope Client.app'