13 lines
469 B
Bash
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 |