Hi,
Is there a way to find Skype version in all the managed mac devices in my company?
I tried with the extension attribute but the script is not populating the results.
Hi,
Is there a way to find Skype version in all the managed mac devices in my company?
I tried with the extension attribute but the script is not populating the results.
Best answer by millersc
#!/bin/sh
#
# Gets currently installed version of Skype for Business
#
if [ -f "/Applications/Skype for Business.app/Contents/Info.plist" ] ; then
VERSION=$( defaults read '/Applications/Skype for Business.app/Contents/Info.plist' CFBundleShortVersionString )
else
VERSION="Not installed"
fi
echo "<result>$VERSION</result>"
Try this. Remember it does need to do a recon before it will populate EA's. It's only going to be the version number (16.3.241) or Not Installed.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.