Skip to main content
Question

Adobe Licensing

  • May 17, 2017
  • 9 replies
  • 33 views

Forum|alt.badge.img+5

Hi everyone,

Has anyone had any problems with licensing Adobe? We have created a policy for installing the software, but the license package we created does not work. Unfortunately, I am not the one who created the package.

Does anyone has any suggestions on how we should license the software?

Thanks!

9 replies

Forum|alt.badge.img+10
  • Valued Contributor
  • May 17, 2017

The licensing routine has to run on the target machine after imaging. I run mine with a shell script:

#!/bin/sh

# Serialize Adobe Creative Cloud suite
/Library/AdminToolBox/AdobeSerialization --tool=VolumeSerialize --provfile=/Library/AdminToolBox/prov.xml

I keep my "admin tools" in the main Library folder in a folder called AdminData. (I used to use a folder named Management but another software application started using that path; I can't recall what it was.)

If you have access to the Adobe Enterprise Dashboard, you download their Creative Cloud Packager tool and create the license routine from that. There are several files:

AdobeSerialization
helper.bin
prov.xml
RemoveVolumeSerial

The prov.xml is the one that contains your license. You call it just as I did in the script snippet above. Let us know if you locate these files.

And oh yes, you must be root or use sudo to run the licensing routing. It will obviously need access to the Internet to be successful. ;)

Cheers...


Forum|alt.badge.img+16
  • Valued Contributor
  • May 17, 2017

Assuming your licensing is based on serialization you can export an AdobeSerialization tool from the CCP. I create a package that drops this in /tmp and then executes it with a postinstall script. Something like this in the postinstall script is all you need

sudo /private/tmp/Licence_Adobe_Applications/AdobeSerialization

I do clean up the folder from tmp after the serializer has been run but I would get licensing working first, worry about cleaning up later.

We can maybe help more if you elaborate on your environment a bit.


Forum|alt.badge.img+16
  • Valued Contributor
  • May 17, 2017

Assuming your licensing is based on serialization you can export an AdobeSerialization tool from the CCP. I create a package that drops this in /tmp and then executes it with a postinstall script. Something like this in the postinstall script is all you need

sudo /private/tmp/Licence_Adobe_Applications/AdobeSerialization

I do clean up the folder from tmp after the serializer has been run but I would get licensing working first, worry about cleaning up later.

We can maybe help more if you elaborate on your environment a bit.


Forum|alt.badge.img+4
  • Contributor
  • May 18, 2017

Everything you have outlined above is exactly what we are doing. But, when any CC application is run, it comes up in 30-day trial mode.

I'm using the latest Creative Cloud Packager and our license code is current and valid. The serialization agent "AdobeSerialization" gives results of the number zero, which according to Adobe's documentation means it has worked correctly. However, the problem persists.

Has anyone else had this issue?


Forum|alt.badge.img+16
  • Valued Contributor
  • May 18, 2017

As a test can you generate a working fully serialized application from CCP? Just to verify the serial is truly valid.


Forum|alt.badge.img+4
  • Contributor
  • May 24, 2017

If we do a non-CCP install and use the serial number, it works perfectly. CCP seems to be where things screw up.


Forum|alt.badge.img+4
  • Contributor
  • May 24, 2017

Just logged-in to Adobe Licensing to check that the code is still current, and it is.


bentoms
Forum|alt.badge.img+35
  • Hall of Fame
  • May 25, 2017

Maybe this is the issue?


Forum|alt.badge.img+7
  • Valued Contributor
  • August 14, 2018

@Kaltsas Thank you for sharing this information, but for not sharing exactly what to do. I still like to use the logical side of my brain to figure stuff out, but needed a few hints regarding this project.