Files
Andreas Vogel 306149a726 test
2026-02-16 15:28:29 +01:00

13 lines
469 B
Bash

#!/bin/sh
##########################################################################
# Shellscript : Prüfen auf das vorhandensein von Office Updater
# Autor : Andreas Vogel, macenterprise gmbh, 28.08.2019
##########################################################################
file="/Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app"
if [ -d "$file" ]
then
echo "<result>"Present"</result>"
else
echo "<result>"Not Present"</result>"
fi