Update outlook-erase.sh

This commit is contained in:
Michael
2022-08-04 18:23:42 +01:00
committed by GitHub
parent cf0056011b
commit f92a3c1324

View File

@@ -20,22 +20,25 @@
######################################################################### #########################################################################
scriptver='1.0' scriptver='1.0'
export CURL_SSL_BACKEND="secure-transport"
logfile="/Library/Logs/com.purplecomputing.mdm/outlook-erase.log" logfile="/Library/Logs/com.purplecomputing.mdm/outlook-erase.log"
#Making Purple Cache directories for in the event that the helper script hasn't been run #Making Purple Cache directories for in the event that the helper script hasn't been run
mkdir -p /Library/Caches/com.purplecomputing.mdm/ mkdir -p /Library/Caches/com.purplecomputing.mdm/
mkdir -p /Library/Logs/com.purplecomputing.mdm/ mkdir -p /Library/Logs/com.purplecomputing.mdm/
mkdir -p /Library/Caches/com.purplecomputing.mdm/Apps/ mkdir -p /Library/Caches/com.purplecomputing.mdm/Apps/
curl -o /Library/Caches/com.purplecomputing.mdm/Apps/OU.pkg https://office-reset.com/download/Microsoft_Outlook_Reset_1.9.1.pkg
curl -o /Library/Caches/com.purplecomputing.mdm/Apps/OE.pkg https://office-reset.com/download/Microsoft_Outlook_Data_Removal_1.9.1.pkg curl -o /Library/Caches/com.purplecomputing.mdm/Apps/OE.pkg https://office-reset.com/download/Microsoft_Outlook_Data_Removal_1.9.1.pkg
echo "Status: Running the installer" >> ${logfile} echo "Status: Running the installer" >> ${logfile}
installer -pkg /Library/Caches/com.purplecomputing.mdm/Apps/OU.pkg -target /
installer -pkg /Library/Caches/com.purplecomputing.mdm/Apps/OE.pkg -target / installer -pkg /Library/Caches/com.purplecomputing.mdm/Apps/OE.pkg -target /
echo "Status: Cleaning up after the installer" >> ${logfile} echo "Status: Cleaning up after the installer" >> ${logfile}
rm -rf /Library/Caches/com.purplecomputing.mdm/Apps/OU.pkg
rm -rf /Library/Caches/com.purplecomputing.mdm/Apps/OE.pkg rm -rf /Library/Caches/com.purplecomputing.mdm/Apps/OE.pkg
sleep 2 sleep 2
echo "Status: Completed" >> ${logfile} echo "Status: Completed" >> ${logfile}
echo Complere echo Complete
exit 0 exit 0