Posted on 03-11-2021 03:52 AM
Hello
I would need your kind help to create an EA to gather current "named" CC assigned licenses.
I have been using an old script found here on JN (I think it was good up to CC2018) and it still probably gather the leftover on our clients, meaning the "regid.1986-12.com.adobe_V7" is still present although license mode/"receipt" file to refer to has changed since then.
#!/bin/bash
ADOBECCLICENSETYPE=`cat /Library/Application Support/regid.1986-12.com.adobe/regid.1986-12.com.adobe_V7{}CreativeCloudEnt* | grep "channel_type"`
if [[ $ADOBECCLICENSETYPE == *VOLUME* ]]
then
echo "<result>Serialized</result>"
elif [[ $ADOBECCLICENSETYPE == *SUBSCRIPTION* ]]
then
echo "<result>Subscription</result>"
else
echo "<result>N/A</result>"
fi
the one available here on JAMF resources in also quite old
I have been googling around with no luck.
Is there an updated way/EA to gather named licences for both active CC assigned named licenses and ideally just for Acrobat DC ones, for which we have a different product subscription plan ?
Many thanks for your help everyone !