Skip to content

Instantly share code, notes, and snippets.

@melmatsuoka
Last active June 12, 2023 13:05
Show Gist options
  • Save melmatsuoka/9c78e4d9bc2f3cf035d668786612eb3e to your computer and use it in GitHub Desktop.
Save melmatsuoka/9c78e4d9bc2f3cf035d668786612eb3e to your computer and use it in GitHub Desktop.
Checks if the "Blend-X" plugin for Avid Media Composer is installed (Mosyle/MDM)
#!/usr/bin/env bash
#
# To create a Mosyle Device Group containing systems that do/don't have the plugin installed,
# enable the "Show the command response as an attribute on Device Info" checkbox in the
# Custom Command profile for this script, and create an attribute label for it. Then
# you can use the value stored in that Custom Attribute label as the Criteria for building
# the device group.
#
# This is handy for showing the Blend-X installer in Mosyle Self Service only on machines
# that don't already have it installed.
if [ -d "/Library/Application Support/Avid/AVX2_Plug-ins/AVX2xBlend/AVX2xBlend.avx" ]
then
echo "installed"
else
echo "not installed"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment