Posted on 11-13-2020 10:55 AM
Wanted to see if anybody had an extension attribute that would report the Webex teams version. Seems that Teams reports under applications the version that was originally installed. We leverage auto updates through the application and trying to find best way to report on that.
Posted on 03-25-2024 07:34 PM
If you're still looking for something, I recently added this to environment. Just an extension attribute that can be used for reporting or even smart groups for scoping new packages. There are several ways to do the "get current user" part, but that's just what I did.
Cheers!
#!/bin/sh
currentUser=$(who | awk '/console/{print$1}')
Result=$(cat /Users/$currentUser/Library/Application\ Support/Cisco\ Spark/version.txt)
echo "<result>$Result</result>"