Skip to main content
Question

CrashPlan Version

  • May 25, 2016
  • 3 replies
  • 12 views

Forum|alt.badge.img+3

Forgive me for asking something that may already exist but I have spent some time looking and have been unable to find it. Does anyone have an Extension Attribute to determine the version of CrashPlan? Thank you in advance.

3 replies

Forum|alt.badge.img+9
  • Contributor
  • May 25, 2016

Tested this out and seems to do the job.

#!/bin/sh
# Find CrashPlan version if installed. 

crashplanInstalled=`cd /Applications/ && ls | grep "CrashPlan.app"`
if [ $crashplanInstalled ]; then
    crashplanVersion=`defaults read /Applications/CrashPlan.app/Contents/Info CFBundleShortVersionString`
    echo "<result>$crashplanVersion</result>" 
else
    echo "<result>Not Installed</result>"
fi
exit 0

Forum|alt.badge.img+3
  • Author
  • New Contributor
  • May 31, 2016

Thanks a million for that!


Forum|alt.badge.img+11
  • Contributor
  • July 22, 2016

Howdy,

Has anyone here noticed that since the 4.6.x upgrade, the client still reports to the JSS as 4.3.4? When the app is running, it reports as version 4.6.0 in the CrashPlan interface, but the CFBundleShortVersionString still reports the app as being version 4.3.4.

This seems to be specific to clients that were upgraded directly via the server. We had one machine that we directly installed 4.6.0 and it is reporting correctly.