12 lines
428 B
Bash
12 lines
428 B
Bash
#!/bin/bash
|
|
##########################################################################
|
|
# Shellscript : Uninstall EPP
|
|
# Autor : Andreas Vogel, macenterprise gmbh, 30.09.2019
|
|
##########################################################################
|
|
file="/Library/CoSoSys/EndpointProtector/remove-epp"
|
|
if [ -e "$file" ]
|
|
then
|
|
sudo /Library/CoSoSys/EndpointProtector/remove-epp
|
|
else
|
|
echo "<result>"Not Present"</result>"
|
|
fi |