Does anyone have or know how to make an EA to show Retrospect client version?
Thanks.
Solved
Retrospect Version Extension Attribute
Best answer by mm2270
defaults read /Library/PreferencePanes/Retrospect Client.prefPane/Contents/Info.plist CFBundleVersion
Note you can also use CFBundleShortVersionString as the attribute to read, but since the plist you posted shows this for that attribute - <string>13.0.1 (104)</string> I'd say its probably better to use CFBundleVersion
That should yield 13.0.1.104 as an example.
To put the above into a usable EA script, try something like this
#!/bin/sh
PrefPanePath="/Library/PreferencePanes/Retrospect Client.prefPane"
if [ -e "$PrefPanePath" ]; then
result=$(defaults read "${PrefPanePath}/Contents/Info.plist" CFBundleVersion)
else
result="Not Installed"
fi
echo "<result>$result</result>"Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
