adobe-packager icon indicating copy to clipboard operation
adobe-packager copied to clipboard

DOwnloaing Acrobat

Open ahvlima opened this issue 2 years ago • 10 comments

Have you tried https://www.adobe.com/devnet-docs/acrobatetk/tools/ReleaseNotesDC/index.html It's not a XML or JSON list, but allows for the downloads

ahvlima avatar Nov 12 '21 19:11 ahvlima

Adobe acrobat is not a single installer application, there are two installers, first one is base application, and second one is an update file. Base file installs Acrobat 2015, the update updates it.

naamhaiabdullah avatar Nov 16 '21 15:11 naamhaiabdullah

SAP Code: APRO Current Version: 21.0 (21.7.20099.7) Platform: osx10

The URL format of the final installer is similar to the others (403 response without headers) https://ccmdls.adobe.com/AdobeProducts/APRO/21/osx10/cef964e4-5e98-4e5a-9617-58778d93c098/Acrobat_DC_Web_WWMUI.dmg

This URL is in the asset_path element of the manifest.xml listed on the products.xml. I think the issue is that the buildGuid is not provided for APRO. However, the buildGuid itself is contained in the manifest.xml URL. Including support for Acrobat would likely require parsing the manifest.xml URL when the buildGuid is missing.

The Acrobat Pro installer for Mac can be downloaded using the CURL command below.

curl --location --request GET 'https://ccmdls.adobe.com/AdobeProducts/APRO/21/osx10/cef964e4-5e98-4e5a-9617-58778d93c098/Acrobat_DC_Web_WWMUI.dmg' \
--header 'X-Adobe-App-Id: accc-hdcore-desktop' \
--header 'User-Agent: Adobe Application Manager 2.0' \
--header 'X-Api-Key: CC_HD_ESD_1_0' \
--output Acrobat_DC_Web_WWMUI.dmg

ifnull avatar Jan 03 '22 19:01 ifnull

Would this help? https://helpx.adobe.com/download-install/kb/acrobat-2020-downloads.html

arielhasidim avatar Jan 15 '22 19:01 arielhasidim

For anyone else specifically trying to get Adobe Acrobat version 21.007.20091 I was able to get it by:

  1. first installing version 20 from the URL https://ccmdls.adobe.com/AdobeProducts/APRO/20/osx10/Acrobat_DC_Web_WWMUI.dmg (inspired by https://github.com/Homebrew/homebrew-cask/commit/350896fed60a428d69f18a90b7ba19bd6f9089f1 )

  2. Then installing the 21.007.20091 update from https://www.adobe.com/devnet-docs/acrobatetk/tools/ReleaseNotesDC/continuous/dccontinuoussept2021.html#dccontinuoussepttwentytwentyone (inspired by the first post on this bugreport, page https://www.adobe.com/devnet-docs/acrobatetk/tools/ReleaseNotesDC/index.html )

Full command to get version 20 full installer is:

curl --location --request GET 'https://ccmdls.adobe.com/AdobeProducts/APRO/20/osx10/Acrobat_DC_Web_WWMUI.dmg' \
--header 'X-Adobe-App-Id: accc-hdcore-desktop' \
--header 'User-Agent: Adobe Application Manager 2.0' \
--header 'X-Api-Key: CC_HD_ESD_1_0' \
--output Acrobat_DC_Web_WWMUI.dmg

gua1 avatar Mar 03 '22 23:03 gua1

@gua1 this works thank you!

Aholicknight avatar Mar 06 '22 07:03 Aholicknight

For anyone else specifically trying to get Adobe Acrobat version 21.007.20091 I was able to get it by:

  1. first installing version 20 from the URL https://ccmdls.adobe.com/AdobeProducts/APRO/20/osx10/Acrobat_DC_Web_WWMUI.dmg (inspired by Homebrew/homebrew-cask@350896f )
  2. Then installing the 21.007.20091 update from https://www.adobe.com/devnet-docs/acrobatetk/tools/ReleaseNotesDC/continuous/dccontinuoussept2021.html#dccontinuoussepttwentytwentyone (inspired by the first post on this bugreport, page https://www.adobe.com/devnet-docs/acrobatetk/tools/ReleaseNotesDC/index.html )

Full command to get version 20 full installer is:

curl --location --request GET 'https://ccmdls.adobe.com/AdobeProducts/APRO/20/osx10/Acrobat_DC_Web_WWMUI.dmg' \
--header 'X-Adobe-App-Id: accc-hdcore-desktop' \
--header 'User-Agent: Adobe Application Manager 2.0' \
--header 'X-Api-Key: CC_HD_ESD_1_0' \
--output Acrobat_DC_Web_WWMUI.dmg

Doesn't work, says installation failed on macOS Monterey. I tried multiple times and am getting the same error. Using M1 Pro MBP (2021).

ballenvironment avatar Aug 14 '22 22:08 ballenvironment

For newer MacOS, you might have to install it on an older MacOS then upgrade to Monterey.

On Sun, Aug 14, 2022 at 3:13 PM potatochips489 @.***> wrote:

For anyone else specifically trying to get Adobe Acrobat version 21.007.20091 I was able to get it by:

  1. first installing version 20 from the URL https://ccmdls.adobe.com/AdobeProducts/APRO/20/osx10/Acrobat_DC_Web_WWMUI.dmg (inspired by @.*** https://github.com/Homebrew/homebrew-cask/commit/350896fed60a428d69f18a90b7ba19bd6f9089f1 )
  2. Then installing the 21.007.20091 update from

https://www.adobe.com/devnet-docs/acrobatetk/tools/ReleaseNotesDC/continuous/dccontinuoussept2021.html#dccontinuoussepttwentytwentyone (inspired by the first post on this bugreport, page https://www.adobe.com/devnet-docs/acrobatetk/tools/ReleaseNotesDC/index.html )

Full command to get version 20 full installer is:

curl --location --request GET 'https://ccmdls.adobe.com/AdobeProducts/APRO/20/osx10/Acrobat_DC_Web_WWMUI.dmg'
--header 'X-Adobe-App-Id: accc-hdcore-desktop'
--header 'User-Agent: Adobe Application Manager 2.0'
--header 'X-Api-Key: CC_HD_ESD_1_0'
--output Acrobat_DC_Web_WWMUI.dmg

Doesn't work, says installation failed on macOS Monterey. I tried multiple times and am getting the same error. Using M1 Pro MBP (2021).

— Reply to this email directly, view it on GitHub https://github.com/Drovosek01/adobe-packager/issues/16#issuecomment-1214458336, or unsubscribe https://github.com/notifications/unsubscribe-auth/AA2Q5PCWZCYIGLAYD73D5E3VZFVPPANCNFSM5H5SLK5Q . You are receiving this because you were mentioned.Message ID: @.***>

gua1 avatar Aug 14 '22 22:08 gua1

For newer MacOS, you might have to install it on an older MacOS then upgrade to Monterey.

The 2021 Macbooks cannot be downgraded from Monterey. I tried downloading a 2022 version of Acrobat and it worked so that version definitely isn't supported in MacOS 12+. It is unfortunate but i will refrain from updating MacOS to avoid possibly breaking my adobe softwares.

ballenvironment avatar Aug 15 '22 03:08 ballenvironment

One roundabout way would be to say use another Mac or a VM with an older version, then upgrade that and do a time machine backup of it, then restore it to your main Mac

On Sun, Aug 14, 2022 at 8:13 PM potatochips489 @.***> wrote:

For newer MacOS, you might have to install it on an older MacOS then upgrade to Monterey.

The 2021 Macbooks cannot be downgraded from Monterey. I tried downloading a 2022 version of Acrobat and it worked so that version definitely isn't supported in MacOS 12+. It is unfortunate but i will refrain from updating MacOS to avoid possibly breaking my adobe softwares.

— Reply to this email directly, view it on GitHub https://github.com/Drovosek01/adobe-packager/issues/16#issuecomment-1214567460, or unsubscribe https://github.com/notifications/unsubscribe-auth/AA2Q5PGKZXKQT3WHGP3VM33VZGYVNANCNFSM5H5SLK5Q . You are receiving this because you were mentioned.Message ID: @.***>

gua1 avatar Aug 15 '22 04:08 gua1

This issue should be closed, Acrobat support has been added.

Antibioticss avatar Jun 28 '23 07:06 Antibioticss