Posted on 02-02-2018 04:01 AM
Has anyone come up with a way to check the version of the currently installed DisplayLink drivers? There's no app and I can't find where the actual driver files are installed to query.
Solved! Go to Solution.
Posted on 02-02-2018 04:57 AM
@AVmcclint Here is what we are using to show the DisplayLink driver version. Has been working well.
#!/bin/sh
#
# Check for DisplayLink version
#
if [ -f "/Library/Extensions/DisplayLinkDriver.kext/Contents/Info.plist" ] ; then
VERSION=$( defaults read "/Library/Extensions/DisplayLinkDriver.kext/Contents/Info.plist" CFBundleVersion )
else
VERSION="Not Installed"
fi
echo "<result>$VERSION</result>"
Posted on 02-02-2018 04:57 AM
@AVmcclint Here is what we are using to show the DisplayLink driver version. Has been working well.
#!/bin/sh
#
# Check for DisplayLink version
#
if [ -f "/Library/Extensions/DisplayLinkDriver.kext/Contents/Info.plist" ] ; then
VERSION=$( defaults read "/Library/Extensions/DisplayLinkDriver.kext/Contents/Info.plist" CFBundleVersion )
else
VERSION="Not Installed"
fi
echo "<result>$VERSION</result>"
Posted on 02-02-2018 05:28 AM
That did the trick. Thanks!
Posted on 02-02-2018 06:56 AM
Confirmed this should work, what we are using and the Extension I created and uploaded to the Third Party page