This script enables you stop and start Symantec Endpoint Protection on OS X
sudo curl https://gist.githubusercontent.com/steve-jansen/61a189b6ab961a517f68/raw/sep -o /usr/local/bin/sep
sudo chmod 755 /usr/local/bin/sep
sudo chown root:staff /usr/local/bin/sep
If your user account is not a member of the admin
group (i.e., not an OS X Administrator),
you need to add the following line to /etc/sudoers
using sudo visudo
tool:
myusername ALL= NOPASSWD: /usr/local/bin/sep
me:~$ sep stop
/usr/local/bin/sep: relaunching as sudo /usr/local/bin/sep
/usr/local/bin/sep: unloading Symantec Endpoint Protection daemon
/usr/local/bin/sep: unloading Symantec Endpoint Protection shared settings daemon
/usr/local/bin/sep: closing Symantec Endpoint Protection UI widget
me:~$ sudo /usr/local/bin/sep start
/usr/local/bin/sep: relaunching as sudo /usr/local/bin/sep
/usr/local/bin/sep: loading Symantec Endpoint Protection daemon
/usr/local/bin/sep: unloading Symantec Endpoint Protection shared settings daemon
/usr/local/bin/sep: launching Symantec Endpoint Protection UI widget
@JESii Figured out the solution here
Per https://support.symantec.com/en_US/article.TECH134203.html, we need to use
com.symantec.symdaemon.*plist
to match oncom.symantec.symdaemon.plist
for SEP 12.x andcom.symantec.symdaemon.NFW.plist
for SEP 14.xI've updated this gist and confirmed it's working on Sierra with SEP 14.x.