HI all,
My org has about 200 Acrobat XI installs currently. We are now forced to order Acrobat DC. I need to disable all cloud services and ensure the users are never prompted for login/Adobe ID.
I created my transform through the Customization tool and chose "disable all features" under the Online Services area. I install via PowerShell, which prompts for the individual installation key and inserts it into the install command.
After installation, you still cannot run Acrobat without creating and logging in with an Adobe ID. I cannot use the "offline exception" feature because we have a different license key for each instance of Acrobat.
$key = read-host "Please enter the license key for Adobe Acrobat Pro DC:"
$args2 = "/i AcroPro.msi TRANSFORMS=AcroPro.mst ISX_SERIALNUMBER=$key /qn"
Start-Process msiexec -ArgumentList $args2
Effectively, my run command is:
msiexec /i AcroPro.msi TRANSFORMS=AcroPro.mst ISX_SERIALNUMBER=1234123412341234 /qn
Is there any possible way for me to install this with the same behavior as XI? We have no interest in allowing for cloud storage.
Thanks for your time.