Acrobat SCA Updater

【Acrobat SCA版】2400420219 アップデート

今回はWindows版とバージョンが異なる


SCA版 Acrobatの最新パッチURL

dld_Patch_Mini_Incr:旧称Readerの差分パッチ
dld_Patch_Mini_Cumulative:旧称Readerの累積パッチ
dld_Patch_Combined_Incr:製品版DCの差分パッチ
dld_Mini_Full: Reader版Miniの新規インストーラー上書き用
dld_Acrobat_Full:製品版DCの新規インストーラー上書き用
dld_Patch_Combined_Cumulative:製品版DCの累積パッチ

----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Mini_Incr
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400420219/AcroRdrSCADCUpd2400420219_MUI_incr.pkg
193.38 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Mini_Cumulative
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400420219/AcroRdrSCADCUpd2400420219_MUI.pkg
508.84 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Combined_Incr
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400420219/AcrobatSCADCUpd2400420219_incr.pkg
222.25 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Mini_Full
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400420219/AcroRdrSCADC2400420219_MUI.pkg
594.1 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Acrobat_Full
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400420219/AcrobatSCADC2400420219_MUI.pkg
1,432.79 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Combined_Cumulative
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400420219/AcrobatSCADCUpd2400420219.pkg
692.83 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Patch_Mini_Incr
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320180/AcroRdrSCADCUpd2400320180_MUI_incr.pkg
163.69 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Patch_Mini_Cumulative
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320180/AcroRdrSCADCUpd2400320180_MUI.pkg
495.23 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Patch_Combined_Incr
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320180/AcrobatSCADCUpd2400320180_incr.pkg
191.65 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Acrobat_Full
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320180/AcrobatSCADC2400320180_MUI.pkg
1,421.35 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Patch_Combined_Cumulative
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320180/AcrobatSCADCUpd2400320180.pkg
676.4 MB

|

Acobat SCA版FULLインストーラーによるアップデート(要は入れ替え)


AppleScript サンプルコード

【スクリプトエディタで開く】 |

AppleScript サンプルソース(参考)
行番号ソース
001#!/usr/bin/env osascript
002----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
003(*
004SCA版のAcrobatの
005最新アップデーターのURLを取得
006インストール(アップデート)を試みます
007最新のパッケージを上書き(入れ替え)インストールです
008
009設定項目があります 必須
010管理者 ID と パスワード
011
012配布して利用する場合
013アプリケーションにして実行専用にしてください
014-->ユーザーにパスワードを教えたくないケース用
015
016com.cocolog-nifty.quicktimer.icefloe *)
017----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
018use AppleScript version "2.8"
019use framework "Foundation"
020use framework "AppKit"
021use scripting additions
022
023property refMe : a reference to current application
024
025property refNSNotFound : a reference to 9.22337203685477E+18 + 5807
026
027#適応するパッケージ名の一部
028set strPkgKey to ("AcrobatSCADCUpd24") as text
029#set strPkgKey to ("AcrobatSCADC24") as text
030
031set strAdminName to ("管理者のショートユーザー名") as text
032set strAdminPW to ("管理者パスワード") as text
033
034
035##############################
036#バージョン番号URL
037set ocidURLComponents to refMe's NSURLComponents's alloc()'s init()
038ocidURLComponents's setScheme:"https"
039ocidURLComponents's setHost:"armmf.adobe.com"
040ocidURLComponents's setPath:"/arm-manifests/mac/AcrobatDC/acrobat/current_version.txt"
041set ocidURLStrings to ocidURLComponents's |URL|'s absoluteString()
042set ocidURL to refMe's NSURL's alloc()'s initWithString:(ocidURLStrings)
043log ocidURL's absoluteString() as text
044
045##############################
046#起動時に削除される項目にダウンロード
047set appFileManager to refMe's NSFileManager's defaultManager()
048set ocidTempDirURL to appFileManager's temporaryDirectory()
049set ocidUUID to refMe's NSUUID's alloc()'s init()
050set ocidUUIDString to ocidUUID's UUIDString
051set ocidSaveDirPathURL to ocidTempDirURL's URLByAppendingPathComponent:(ocidUUIDString) isDirectory:(true)
052#フォルダを作っておく
053set ocidAttrDict to refMe's NSMutableDictionary's alloc()'s initWithCapacity:0
054ocidAttrDict's setValue:(511) forKey:(refMe's NSFilePosixPermissions)
055set listDone to appFileManager's createDirectoryAtURL:(ocidSaveDirPathURL) withIntermediateDirectories:(true) attributes:(ocidAttrDict) |error| :(reference)
056if (item 2 of listDone) ≠ (missing value) then
057  log (item 2 of listDone)'s code() as text
058  log (item 2 of listDone)'s localizedDescription() as text
059  return "createDirectoryAtURL エラーしました"
060end if
061
062#保存パス
063set strSaveFileName to "AcrobatSCAInstaller.pkg" as text
064set ocidSavePkgFilePathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:(strSaveFileName) isDirectory:(false)
065set strPkgFilePath to ocidSavePkgFilePathURL's |path| as text
066
067
068##############################
069#NSDATAでダウンロード
070set ocidOption to (refMe's NSDataReadingMappedIfSafe)
071set listResponse to refMe's NSData's alloc()'s initWithContentsOfURL:(ocidURL) options:(ocidOption) |error| :(reference)
072if (item 2 of listResponse) = (missing value) then
073  set ocidReadData to (item 1 of listResponse)
074else if (item 2 of listResponse) ≠ (missing value) then
075  log (item 2 of listResponse)'s code() as text
076  log (item 2 of listResponse)'s localizedDescription() as text
077  return "エラーしました"
078end if
079##############################
080#テキストにする NSString's
081set ocidReadStrings to refMe's NSString's alloc()'s initWithData:(ocidReadData) encoding:(refMe's NSUTF8StringEncoding)
082#ここまでのデータをクリアしておく
083set ocidReadData to (missing value)
084#改行をUNIXに強制
085set ocidReadStringsTMP to (ocidReadStrings's stringByReplacingOccurrencesOfString:("\n\r") withString:("\n"))
086set ocidReadStringsTMP to (ocidReadStringsTMP's stringByReplacingOccurrencesOfString:("\r") withString:("\n"))
087set ocidReadStrings to (ocidReadStringsTMP's stringByReplacingOccurrencesOfString:("\n\n") withString:("\n"))
088set ocidReadStrings to (ocidReadStringsTMP's stringByReplacingOccurrencesOfString:(".") withString:(""))
089
090set strVersion to ocidReadStrings as text
091
092##############################
093#インストールパッケージURL
094set ocidURLComponents to refMe's NSURLComponents's alloc()'s init()
095ocidURLComponents's setScheme:("https")
096ocidURLComponents's setHost:("ardownload3.adobe.com")
097set strSetPath to ("/pub/adobe/acrobat/mac/AcrobatDC/" & strVersion & "/AcrobatSCADC" & strVersion & "_MUI.pkg") as text
098ocidURLComponents's setPath:(strSetPath)
099set ocidURLStrings to ocidURLComponents's |URL|'s absoluteString()
100set ocidURL to refMe's NSURL's alloc()'s initWithString:(ocidURLStrings)
101log ocidURL's absoluteString() as text
102
103
104##############################
105#NSDATAでダウンロード
106set ocidOption to (refMe's NSDataReadingMappedIfSafe)
107set listResponse to refMe's NSData's alloc()'s initWithContentsOfURL:(ocidURL) options:(ocidOption) |error| :(reference)
108if (item 2 of listResponse) = (missing value) then
109  set ocidReadData to (item 1 of listResponse)
110else if (item 2 of listResponse) ≠ (missing value) then
111  log (item 2 of listResponse)'s code() as text
112  log (item 2 of listResponse)'s localizedDescription() as text
113  return "エラーしました"
114end if
115
116##############################
117#保存
118set ocidOption to (refMe's NSDataWritingAtomic)
119set listDone to ocidReadData's writeToURL:(ocidSavePkgFilePathURL) options:(ocidOption) |error| :(reference)
120if (item 2 of listDone) ≠ (missing value) then
121  log (item 2 of listDone)'s code() as text
122  log (item 2 of listDone)'s localizedDescription() as text
123  return "エラーしました"
124end if
125
126##############################
127#インストール実行
128set strCommandText to ("/bin/zsh -c '/usr/bin/sudo /usr/sbin/installer -pkg \"" & strPkgFilePath & "\" -target / -dumplog -allowUntrusted -lang ja'")
129log strCommandText
130try
131  ##UIを使ったインストールをする場合
132  # do shell script strCommandText
133  
134  ##アプリケーションにして実行する場合
135  do shell script strCommandText user name strAdminName password strAdminPW with administrator privileges
136on error
137  return "インストールに失敗しました"
138end try
139
AppleScriptで生成しました

|

【Acrobat】新規インストーラー・アップデータ一覧取得(簡易版)


AppleScript サンプルコード

【スクリプトエディタで開く】 |

AppleScript サンプルソース(参考)
行番号ソース
001#!/usr/bin/env osascript
002----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
003# htmlの収集と解析
004# com.cocolog-nifty.quicktimer.icefloe
005# アクロバットの新規インストーラーの取得と
006#   アップデータの取得
007# V24用
008----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
009use AppleScript version "2.8"
010use framework "Foundation"
011use framework "AppKit"
012use scripting additions
013property refMe : a reference to current application
014
015
016#対象のURL
017set strURL to ("https://www.adobe.com/devnet-docs/acrobatetk/tools/ReleaseNotesDC/index.html") as text
018
019#URL
020set ocidURLString to (refMe's NSString's stringWithString:(strURL))
021set ocidURL to (refMe's NSURL's alloc()'s initWithString:(ocidURLString))
022
023#XML
024set ocidOption to (refMe's NSXMLDocumentTidyHTML)
025set listReadXMLDoc to (refMe's NSXMLDocument's alloc()'s initWithContentsOfURL:(ocidURL) options:(ocidOption) |error| :(reference))
026set ocidReadXMLDoc to (item 1 of listReadXMLDoc)
027set ocidRootElement to ocidReadXMLDoc's rootElement()
028set ocidHeadElement to (ocidRootElement's elementsForName:("body"))'s firstObject()
029set listResponse to (ocidHeadElement's nodesForXPath:("//div[@id='continuous-track-installers']/ul/li/p/a") |error| :(reference))
030if (item 2 of listResponse) = (missing value) then
031  set ocidAArray to (item 1 of listResponse)
032else if (item 2 of listResponse) ≠ (missing value) then
033  set strErrorNO to (item 2 of listResponse)'s code() as text
034  set strErrorMes to (item 2 of listResponse)'s localizedDescription() as text
035  refMe's NSLog("■:" & strErrorNO & strErrorMes)
036  return "エラーしました" & strErrorNO & strErrorMes
037end if
038
039#出力用テキスト
040set ocidTempstring to refMe's NSMutableString's alloc()'s initWithCapacity:(0)
041
042repeat with itemAnode in ocidAArray
043  set ocidStringValue to itemAnode's stringValue()
044  set itemStringValueArray to (ocidStringValue's componentsSeparatedByString:(" "))'s firstObject()
045  set ocidVersionStrings to (itemStringValueArray's stringByReplacingOccurrencesOfString:(".") withString:(""))
046  set boolContainX to (ocidVersionStrings's containsString:("x")) as boolean
047  set boolContainDC to (ocidVersionStrings's containsString:("DC")) as boolean
048  set boolVer24 to (ocidVersionStrings's hasPrefix:("24")) as boolean
049  if boolVer24 is true then
050    if boolContainX is false then
051      (ocidTempstring's appendString:(ocidVersionStrings))
052      (ocidTempstring's appendString:("\n"))
053    end if
054  end if
055  (*
056  if boolContainX is false then
057    if boolContainDC is false then
058      if ocidVersionStrings is not "" then
059        (ocidOutPutstring's appendString:(ocidVersionStrings))
060        (ocidOutPutstring's appendString:("\n"))
061      end if
062    end if
063  end if
064  *)
065  
066end repeat
067
068set ocidOutPutstring to refMe's NSMutableString's alloc()'s initWithCapacity:(0)
069
070set itemVersionArray to ocidTempstring's componentsSeparatedByString:("\n")
071itemVersionArray's removeLastObject()
072repeat with itemVerSion in itemVersionArray
073  (ocidOutPutstring's appendString:("\n"))
074  set strVersion to itemVerSion as text
075  set strSetValue to (strVersion & " ----------------------") as text
076  (ocidOutPutstring's appendString:(strSetValue))
077  (ocidOutPutstring's appendString:("\n"))
078  (ocidOutPutstring's appendString:("【SCA】(SingleClientApp) Unified App版\n"))
079  (ocidOutPutstring's appendString:("■AcrobatSCA 新規インストーラー\n"))
080  set strSetValue to ("https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/" & strVersion & "/AcrobatSCADC" & strVersion & "_MUI.pkg\n") as text
081  (ocidOutPutstring's appendString:(strSetValue))
082  set strSetValue to ("https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/" & strVersion & "/AcrobatSCADC" & strVersion & "_MUI.dmg\n") as text
083  (ocidOutPutstring's appendString:(strSetValue))
084  (ocidOutPutstring's appendString:("■AcrobatSCA アップデータ incrは差分のみ\n"))
085  set strSetValue to ("https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/" & strVersion & "/AcrobatSCADCUpd" & strVersion & ".pkg\n") as text
086  (ocidOutPutstring's appendString:(strSetValue))
087  set strSetValue to ("https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/" & strVersion & "/AcrobatSCADCUpd" & strVersion & ".dmg\n") as text
088  (ocidOutPutstring's appendString:(strSetValue))
089  set strSetValue to ("https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/" & strVersion & "/AcrobatSCADCUpd" & strVersion & "_incr.pkg\n") as text
090  (ocidOutPutstring's appendString:(strSetValue))
091  set strSetValue to ("https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/" & strVersion & "/AcrobatSCADCUpd" & strVersion & "_incr.dmg\n") as text
092  (ocidOutPutstring's appendString:(strSetValue))
093  
094  (ocidOutPutstring's appendString:("●ReaderSCA Mini 新規インストーラー\n"))
095  set strSetValue to ("https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/" & strVersion & "/AcroRdrSCADC" & strVersion & "_MUI.pkg\n") as text
096  (ocidOutPutstring's appendString:(strSetValue))
097  set strSetValue to ("https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/" & strVersion & "/AcroRdrSCADC" & strVersion & "_MUI.dmg\n") as text
098  (ocidOutPutstring's appendString:(strSetValue))
099  
100  (ocidOutPutstring's appendString:("●ReaderSCA Miniアップデータ incrは差分のみ\n"))
101  set strSetValue to ("https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/" & strVersion & "/AcroRdrSCADCUpd" & strVersion & "_MUI.pkg\n") as text
102  (ocidOutPutstring's appendString:(strSetValue))
103  set strSetValue to ("https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/" & strVersion & "/AcroRdrSCADCUpd" & strVersion & "_MUI.dmg\n") as text
104  (ocidOutPutstring's appendString:(strSetValue))
105  set strSetValue to ("https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/" & strVersion & "/AcroRdrSCADCUpd" & strVersion & "_MUI_incr.pkg\n") as text
106  (ocidOutPutstring's appendString:(strSetValue))
107  set strSetValue to ("https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/" & strVersion & "/AcroRdrSCADCUpd" & strVersion & "_MUI_incr.dmg\n") as text
108  (ocidOutPutstring's appendString:(strSetValue))
109  
110  
111  (ocidOutPutstring's appendString:("\n"))
112  #########
113  (ocidOutPutstring's appendString:("【従来版】 エンタープライズ版\n"))
114  
115  (ocidOutPutstring's appendString:("■Acrobat 新規インストーラー\n"))
116  set strSetValue to ("https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/" & strVersion & "/AcrobatDC" & strVersion & "_MUI.pkg\n") as text
117  (ocidOutPutstring's appendString:(strSetValue))
118  (ocidOutPutstring's appendString:("■Acrobat アップデータ\n"))
119  set strSetValue to ("https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/" & strVersion & "/AcrobatDCUpd" & strVersion & ".pkg\n") as text
120  (ocidOutPutstring's appendString:(strSetValue))
121  set strSetValue to ("https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/" & strVersion & "/AcrobatDCUpd" & strVersion & ".dmg\n") as text
122  (ocidOutPutstring's appendString:(strSetValue))
123  set strSetValue to ("https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/" & strVersion & "/AcrobatDCUpd" & strVersion & "_incr.pkg\n") as text
124  (ocidOutPutstring's appendString:(strSetValue))
125  set strSetValue to ("https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/" & strVersion & "/AcrobatDCUpd" & strVersion & "_incr.dmg\n") as text
126  (ocidOutPutstring's appendString:(strSetValue))
127  (ocidOutPutstring's appendString:("●Reader 新規インストーラー\n"))
128  set strSetValue to ("https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/" & itemVerSion & "/AcroRdrDC_" & itemVerSion & "_MUI.pkg\n") as text
129  (ocidOutPutstring's appendString:(strSetValue))
130  set strSetValue to ("https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/" & itemVerSion & "/AcroRdrDC_" & itemVerSion & "_MUI.dmg\n") as text
131  (ocidOutPutstring's appendString:(strSetValue))
132  
133  (ocidOutPutstring's appendString:("●Reader アップデータ\n"))
134  set strSetValue to ("https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/" & itemVerSion & "/AcroRdrDCUpd" & itemVerSion & "_MUI.pkg\n") as text
135  (ocidOutPutstring's appendString:(strSetValue))
136  set strSetValue to ("https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/" & itemVerSion & "/AcroRdrDCUpd" & itemVerSion & "_MUI.dmg\n") as text
137  (ocidOutPutstring's appendString:(strSetValue))
138  set strSetValue to ("https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/" & itemVerSion & "/AcroRdrDCUpd" & itemVerSion & "_MUI_incr.pkg\n") as text
139  (ocidOutPutstring's appendString:(strSetValue))
140  set strSetValue to ("https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/" & itemVerSion & "/AcroRdrDCUpd" & itemVerSion & "_MUI_incr.dmg\n") as text
141  (ocidOutPutstring's appendString:(strSetValue))
142end repeat
143######
144
145
146###ディレクトリ
147set appFileManager to refMe's NSFileManager's defaultManager()
148set ocidTempDirURL to appFileManager's temporaryDirectory()
149set ocidUUID to refMe's NSUUID's alloc()'s init()
150set ocidUUIDString to ocidUUID's UUIDString
151set ocidSaveDirPathURL to ocidTempDirURL's URLByAppendingPathComponent:(ocidUUIDString) isDirectory:true
152#
153set ocidAttrDict to refMe's NSMutableDictionary's alloc()'s initWithCapacity:0
154ocidAttrDict's setValue:(511) forKey:(refMe's NSFilePosixPermissions)
155set listBoolMakeDir to appFileManager's createDirectoryAtURL:(ocidSaveDirPathURL) withIntermediateDirectories:true attributes:(ocidAttrDict) |error| :(reference)
156###パス
157set strFileName to "AcraobatInstallURL.txt" as text
158set ocidSaveFilePathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:(strFileName) isDirectory:false
159
160set listDone to ocidOutPutstring's writeToURL:(ocidSaveFilePathURL) atomically:(true) encoding:(refMe's NSUTF8StringEncoding) |error| :(reference)
161if (item 1 of listDone) is true then
162  set appSharedWorkspace to refMe's NSWorkspace's sharedWorkspace()
163  set boolDone to appSharedWorkspace's openURL:(ocidSaveFilePathURL)
164  
165else if (item 1 of listDone) is false then
166  log (item 2 of listDone)'s localizedDescription() as text
167  return "保存に失敗しました"
168end if
169
170
171
172return (ocidOutPutstring as text)
AppleScriptで生成しました

できあがる出力はこんな感じ


2400320121 ----------------------

【SCA】(SingleClientApp) Unified App版

■AcrobatSCA 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcrobatSCADC2400320121_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcrobatSCADC2400320121_MUI.dmg

■AcrobatSCA アップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcrobatSCADCUpd2400320121.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcrobatSCADCUpd2400320121.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcrobatSCADCUpd2400320121_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcrobatSCADCUpd2400320121_incr.dmg

●ReaderSCA Mini 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcroRdrSCADC2400320121_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcroRdrSCADC2400320121_MUI.dmg

●ReaderSCA Miniアップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcroRdrSCADCUpd2400320121_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcroRdrSCADCUpd2400320121_MUI.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcroRdrSCADCUpd2400320121_MUI_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcroRdrSCADCUpd2400320121_MUI_incr.dmg


【従来版】 エンタープライズ版

■Acrobat 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcrobatDC2400320121_MUI.pkg

■Acrobat アップデータ

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcrobatDCUpd2400320121.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcrobatDCUpd2400320121.dmg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcrobatDCUpd2400320121_incr.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcrobatDCUpd2400320121_incr.dmg

●Reader 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320121/AcroRdrDC_2400320121_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320121/AcroRdrDC_2400320121_MUI.dmg

●Reader アップデータ

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320121/AcroRdrDCUpd2400320121_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320121/AcroRdrDCUpd2400320121_MUI.dmg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320121/AcroRdrDCUpd2400320121_MUI_incr.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320121/AcroRdrDCUpd2400320121_MUI_incr.dmg


2400320112 ----------------------

【SCA】(SingleClientApp) Unified App版

■AcrobatSCA 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcrobatSCADC2400320112_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcrobatSCADC2400320112_MUI.dmg

■AcrobatSCA アップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcrobatSCADCUpd2400320112.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcrobatSCADCUpd2400320112.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcrobatSCADCUpd2400320112_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcrobatSCADCUpd2400320112_incr.dmg

●ReaderSCA Mini 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcroRdrSCADC2400320112_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcroRdrSCADC2400320112_MUI.dmg

●ReaderSCA Miniアップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcroRdrSCADCUpd2400320112_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcroRdrSCADCUpd2400320112_MUI.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcroRdrSCADCUpd2400320112_MUI_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcroRdrSCADCUpd2400320112_MUI_incr.dmg


【従来版】 エンタープライズ版

■Acrobat 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcrobatDC2400320112_MUI.pkg

■Acrobat アップデータ

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcrobatDCUpd2400320112.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcrobatDCUpd2400320112.dmg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcrobatDCUpd2400320112_incr.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcrobatDCUpd2400320112_incr.dmg

●Reader 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320112/AcroRdrDC_2400320112_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320112/AcroRdrDC_2400320112_MUI.dmg

●Reader アップデータ

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320112/AcroRdrDCUpd2400320112_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320112/AcroRdrDCUpd2400320112_MUI.dmg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320112/AcroRdrDCUpd2400320112_MUI_incr.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320112/AcroRdrDCUpd2400320112_MUI_incr.dmg


2400320054 ----------------------

【SCA】(SingleClientApp) Unified App版

■AcrobatSCA 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320054/AcrobatSCADC2400320054_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320054/AcrobatSCADC2400320054_MUI.dmg

■AcrobatSCA アップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320054/AcrobatSCADCUpd2400320054.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320054/AcrobatSCADCUpd2400320054.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320054/AcrobatSCADCUpd2400320054_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320054/AcrobatSCADCUpd2400320054_incr.dmg

●ReaderSCA Mini 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320054/AcroRdrSCADC2400320054_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320054/AcroRdrSCADC2400320054_MUI.dmg

●ReaderSCA Miniアップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320054/AcroRdrSCADCUpd2400320054_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320054/AcroRdrSCADCUpd2400320054_MUI.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320054/AcroRdrSCADCUpd2400320054_MUI_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320054/AcroRdrSCADCUpd2400320054_MUI_incr.dmg


【従来版】 エンタープライズ版

■Acrobat 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320054/AcrobatDC2400320054_MUI.pkg

■Acrobat アップデータ

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320054/AcrobatDCUpd2400320054.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320054/AcrobatDCUpd2400320054.dmg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320054/AcrobatDCUpd2400320054_incr.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320054/AcrobatDCUpd2400320054_incr.dmg

●Reader 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320054/AcroRdrDC_2400320054_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320054/AcroRdrDC_2400320054_MUI.dmg

●Reader アップデータ

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320054/AcroRdrDCUpd2400320054_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320054/AcroRdrDCUpd2400320054_MUI.dmg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320054/AcroRdrDCUpd2400320054_MUI_incr.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320054/AcroRdrDCUpd2400320054_MUI_incr.dmg


2400221005 ----------------------

【SCA】(SingleClientApp) Unified App版

■AcrobatSCA 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcrobatSCADC2400221005_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcrobatSCADC2400221005_MUI.dmg

■AcrobatSCA アップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcrobatSCADCUpd2400221005.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcrobatSCADCUpd2400221005.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcrobatSCADCUpd2400221005_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcrobatSCADCUpd2400221005_incr.dmg

●ReaderSCA Mini 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcroRdrSCADC2400221005_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcroRdrSCADC2400221005_MUI.dmg

●ReaderSCA Miniアップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcroRdrSCADCUpd2400221005_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcroRdrSCADCUpd2400221005_MUI.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcroRdrSCADCUpd2400221005_MUI_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcroRdrSCADCUpd2400221005_MUI_incr.dmg


【従来版】 エンタープライズ版

■Acrobat 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcrobatDC2400221005_MUI.pkg

■Acrobat アップデータ

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcrobatDCUpd2400221005.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcrobatDCUpd2400221005.dmg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcrobatDCUpd2400221005_incr.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcrobatDCUpd2400221005_incr.dmg

●Reader 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400221005/AcroRdrDC_2400221005_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400221005/AcroRdrDC_2400221005_MUI.dmg

●Reader アップデータ

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400221005/AcroRdrDCUpd2400221005_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400221005/AcroRdrDCUpd2400221005_MUI.dmg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400221005/AcroRdrDCUpd2400221005_MUI_incr.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400221005/AcroRdrDCUpd2400221005_MUI_incr.dmg


2400220991 ----------------------

【SCA】(SingleClientApp) Unified App版

■AcrobatSCA 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220991/AcrobatSCADC2400220991_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220991/AcrobatSCADC2400220991_MUI.dmg

■AcrobatSCA アップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220991/AcrobatSCADCUpd2400220991.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220991/AcrobatSCADCUpd2400220991.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220991/AcrobatSCADCUpd2400220991_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220991/AcrobatSCADCUpd2400220991_incr.dmg

●ReaderSCA Mini 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220991/AcroRdrSCADC2400220991_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220991/AcroRdrSCADC2400220991_MUI.dmg

●ReaderSCA Miniアップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220991/AcroRdrSCADCUpd2400220991_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220991/AcroRdrSCADCUpd2400220991_MUI.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220991/AcroRdrSCADCUpd2400220991_MUI_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220991/AcroRdrSCADCUpd2400220991_MUI_incr.dmg


【従来版】 エンタープライズ版

■Acrobat 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220991/AcrobatDC2400220991_MUI.pkg

■Acrobat アップデータ

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220991/AcrobatDCUpd2400220991.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220991/AcrobatDCUpd2400220991.dmg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220991/AcrobatDCUpd2400220991_incr.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220991/AcrobatDCUpd2400220991_incr.dmg

●Reader 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220991/AcroRdrDC_2400220991_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220991/AcroRdrDC_2400220991_MUI.dmg

●Reader アップデータ

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220991/AcroRdrDCUpd2400220991_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220991/AcroRdrDCUpd2400220991_MUI.dmg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220991/AcroRdrDCUpd2400220991_MUI_incr.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220991/AcroRdrDCUpd2400220991_MUI_incr.dmg


2400220933 ----------------------

【SCA】(SingleClientApp) Unified App版

■AcrobatSCA 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcrobatSCADC2400220933_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcrobatSCADC2400220933_MUI.dmg

■AcrobatSCA アップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcrobatSCADCUpd2400220933.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcrobatSCADCUpd2400220933.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcrobatSCADCUpd2400220933_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcrobatSCADCUpd2400220933_incr.dmg

●ReaderSCA Mini 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcroRdrSCADC2400220933_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcroRdrSCADC2400220933_MUI.dmg

●ReaderSCA Miniアップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcroRdrSCADCUpd2400220933_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcroRdrSCADCUpd2400220933_MUI.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcroRdrSCADCUpd2400220933_MUI_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcroRdrSCADCUpd2400220933_MUI_incr.dmg


【従来版】 エンタープライズ版

■Acrobat 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcrobatDC2400220933_MUI.pkg

■Acrobat アップデータ

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcrobatDCUpd2400220933.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcrobatDCUpd2400220933.dmg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcrobatDCUpd2400220933_incr.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcrobatDCUpd2400220933_incr.dmg

●Reader 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220933/AcroRdrDC_2400220933_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220933/AcroRdrDC_2400220933_MUI.dmg

●Reader アップデータ

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220933/AcroRdrDCUpd2400220933_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220933/AcroRdrDCUpd2400220933_MUI.dmg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220933/AcroRdrDCUpd2400220933_MUI_incr.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220933/AcroRdrDCUpd2400220933_MUI_incr.dmg


2400220857 ----------------------

【SCA】(SingleClientApp) Unified App版

■AcrobatSCA 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcrobatSCADC2400220857_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcrobatSCADC2400220857_MUI.dmg

■AcrobatSCA アップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcrobatSCADCUpd2400220857.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcrobatSCADCUpd2400220857.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcrobatSCADCUpd2400220857_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcrobatSCADCUpd2400220857_incr.dmg

●ReaderSCA Mini 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcroRdrSCADC2400220857_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcroRdrSCADC2400220857_MUI.dmg

●ReaderSCA Miniアップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcroRdrSCADCUpd2400220857_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcroRdrSCADCUpd2400220857_MUI.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcroRdrSCADCUpd2400220857_MUI_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcroRdrSCADCUpd2400220857_MUI_incr.dmg


【従来版】 エンタープライズ版

■Acrobat 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcrobatDC2400220857_MUI.pkg

■Acrobat アップデータ

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcrobatDCUpd2400220857.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcrobatDCUpd2400220857.dmg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcrobatDCUpd2400220857_incr.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcrobatDCUpd2400220857_incr.dmg

●Reader 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220857/AcroRdrDC_2400220857_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220857/AcroRdrDC_2400220857_MUI.dmg

●Reader アップデータ

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220857/AcroRdrDCUpd2400220857_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220857/AcroRdrDCUpd2400220857_MUI.dmg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220857/AcroRdrDCUpd2400220857_MUI_incr.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220857/AcroRdrDCUpd2400220857_MUI_incr.dmg


2400220854 ----------------------

【SCA】(SingleClientApp) Unified App版

■AcrobatSCA 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcrobatSCADC2400220854_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcrobatSCADC2400220854_MUI.dmg

■AcrobatSCA アップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcrobatSCADCUpd2400220854.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcrobatSCADCUpd2400220854.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcrobatSCADCUpd2400220854_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcrobatSCADCUpd2400220854_incr.dmg

●ReaderSCA Mini 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcroRdrSCADC2400220854_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcroRdrSCADC2400220854_MUI.dmg

●ReaderSCA Miniアップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcroRdrSCADCUpd2400220854_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcroRdrSCADCUpd2400220854_MUI.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcroRdrSCADCUpd2400220854_MUI_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcroRdrSCADCUpd2400220854_MUI_incr.dmg


【従来版】 エンタープライズ版

■Acrobat 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcrobatDC2400220854_MUI.pkg

■Acrobat アップデータ

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcrobatDCUpd2400220854.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcrobatDCUpd2400220854.dmg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcrobatDCUpd2400220854_incr.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcrobatDCUpd2400220854_incr.dmg

●Reader 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220854/AcroRdrDC_2400220854_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220854/AcroRdrDC_2400220854_MUI.dmg

●Reader アップデータ

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220854/AcroRdrDCUpd2400220854_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220854/AcroRdrDCUpd2400220854_MUI.dmg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220854/AcroRdrDCUpd2400220854_MUI_incr.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220854/AcroRdrDCUpd2400220854_MUI_incr.dmg


2400220759 ----------------------

【SCA】(SingleClientApp) Unified App版

■AcrobatSCA 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcrobatSCADC2400220759_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcrobatSCADC2400220759_MUI.dmg

■AcrobatSCA アップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcrobatSCADCUpd2400220759.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcrobatSCADCUpd2400220759.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcrobatSCADCUpd2400220759_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcrobatSCADCUpd2400220759_incr.dmg

●ReaderSCA Mini 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcroRdrSCADC2400220759_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcroRdrSCADC2400220759_MUI.dmg

●ReaderSCA Miniアップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcroRdrSCADCUpd2400220759_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcroRdrSCADCUpd2400220759_MUI.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcroRdrSCADCUpd2400220759_MUI_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcroRdrSCADCUpd2400220759_MUI_incr.dmg


【従来版】 エンタープライズ版

■Acrobat 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcrobatDC2400220759_MUI.pkg

■Acrobat アップデータ

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcrobatDCUpd2400220759.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcrobatDCUpd2400220759.dmg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcrobatDCUpd2400220759_incr.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcrobatDCUpd2400220759_incr.dmg

●Reader 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220759/AcroRdrDC_2400220759_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220759/AcroRdrDC_2400220759_MUI.dmg

●Reader アップデータ

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220759/AcroRdrDCUpd2400220759_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220759/AcroRdrDCUpd2400220759_MUI.dmg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220759/AcroRdrDCUpd2400220759_MUI_incr.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220759/AcroRdrDCUpd2400220759_MUI_incr.dmg


2400220736 ----------------------

【SCA】(SingleClientApp) Unified App版

■AcrobatSCA 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcrobatSCADC2400220736_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcrobatSCADC2400220736_MUI.dmg

■AcrobatSCA アップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcrobatSCADCUpd2400220736.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcrobatSCADCUpd2400220736.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcrobatSCADCUpd2400220736_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcrobatSCADCUpd2400220736_incr.dmg

●ReaderSCA Mini 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcroRdrSCADC2400220736_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcroRdrSCADC2400220736_MUI.dmg

●ReaderSCA Miniアップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcroRdrSCADCUpd2400220736_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcroRdrSCADCUpd2400220736_MUI.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcroRdrSCADCUpd2400220736_MUI_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcroRdrSCADCUpd2400220736_MUI_incr.dmg


【従来版】 エンタープライズ版

■Acrobat 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcrobatDC2400220736_MUI.pkg

■Acrobat アップデータ

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcrobatDCUpd2400220736.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcrobatDCUpd2400220736.dmg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcrobatDCUpd2400220736_incr.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcrobatDCUpd2400220736_incr.dmg

●Reader 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220736/AcroRdrDC_2400220736_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220736/AcroRdrDC_2400220736_MUI.dmg

●Reader アップデータ

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220736/AcroRdrDCUpd2400220736_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220736/AcroRdrDCUpd2400220736_MUI.dmg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220736/AcroRdrDCUpd2400220736_MUI_incr.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220736/AcroRdrDCUpd2400220736_MUI_incr.dmg


2400220687 ----------------------

【SCA】(SingleClientApp) Unified App版

■AcrobatSCA 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcrobatSCADC2400220687_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcrobatSCADC2400220687_MUI.dmg

■AcrobatSCA アップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcrobatSCADCUpd2400220687.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcrobatSCADCUpd2400220687.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcrobatSCADCUpd2400220687_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcrobatSCADCUpd2400220687_incr.dmg

●ReaderSCA Mini 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcroRdrSCADC2400220687_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcroRdrSCADC2400220687_MUI.dmg

●ReaderSCA Miniアップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcroRdrSCADCUpd2400220687_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcroRdrSCADCUpd2400220687_MUI.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcroRdrSCADCUpd2400220687_MUI_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcroRdrSCADCUpd2400220687_MUI_incr.dmg


【従来版】 エンタープライズ版

■Acrobat 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcrobatDC2400220687_MUI.pkg

■Acrobat アップデータ

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcrobatDCUpd2400220687.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcrobatDCUpd2400220687.dmg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcrobatDCUpd2400220687_incr.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcrobatDCUpd2400220687_incr.dmg

●Reader 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220687/AcroRdrDC_2400220687_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220687/AcroRdrDC_2400220687_MUI.dmg

●Reader アップデータ

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220687/AcroRdrDCUpd2400220687_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220687/AcroRdrDCUpd2400220687_MUI.dmg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220687/AcroRdrDCUpd2400220687_MUI_incr.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400220687/AcroRdrDCUpd2400220687_MUI_incr.dmg


2400120643 ----------------------

【SCA】(SingleClientApp) Unified App版

■AcrobatSCA 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcrobatSCADC2400120643_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcrobatSCADC2400120643_MUI.dmg

■AcrobatSCA アップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcrobatSCADCUpd2400120643.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcrobatSCADCUpd2400120643.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcrobatSCADCUpd2400120643_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcrobatSCADCUpd2400120643_incr.dmg

●ReaderSCA Mini 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcroRdrSCADC2400120643_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcroRdrSCADC2400120643_MUI.dmg

●ReaderSCA Miniアップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcroRdrSCADCUpd2400120643_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcroRdrSCADCUpd2400120643_MUI.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcroRdrSCADCUpd2400120643_MUI_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcroRdrSCADCUpd2400120643_MUI_incr.dmg


【従来版】 エンタープライズ版

■Acrobat 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcrobatDC2400120643_MUI.pkg

■Acrobat アップデータ

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcrobatDCUpd2400120643.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcrobatDCUpd2400120643.dmg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcrobatDCUpd2400120643_incr.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcrobatDCUpd2400120643_incr.dmg

●Reader 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400120643/AcroRdrDC_2400120643_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400120643/AcroRdrDC_2400120643_MUI.dmg

●Reader アップデータ

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400120643/AcroRdrDCUpd2400120643_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400120643/AcroRdrDCUpd2400120643_MUI.dmg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400120643/AcroRdrDCUpd2400120643_MUI_incr.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400120643/AcroRdrDCUpd2400120643_MUI_incr.dmg


2400120615 ----------------------

【SCA】(SingleClientApp) Unified App版

■AcrobatSCA 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcrobatSCADC2400120615_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcrobatSCADC2400120615_MUI.dmg

■AcrobatSCA アップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcrobatSCADCUpd2400120615.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcrobatSCADCUpd2400120615.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcrobatSCADCUpd2400120615_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcrobatSCADCUpd2400120615_incr.dmg

●ReaderSCA Mini 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcroRdrSCADC2400120615_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcroRdrSCADC2400120615_MUI.dmg

●ReaderSCA Miniアップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcroRdrSCADCUpd2400120615_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcroRdrSCADCUpd2400120615_MUI.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcroRdrSCADCUpd2400120615_MUI_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcroRdrSCADCUpd2400120615_MUI_incr.dmg


【従来版】 エンタープライズ版

■Acrobat 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcrobatDC2400120615_MUI.pkg

■Acrobat アップデータ

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcrobatDCUpd2400120615.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcrobatDCUpd2400120615.dmg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcrobatDCUpd2400120615_incr.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcrobatDCUpd2400120615_incr.dmg

●Reader 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400120615/AcroRdrDC_2400120615_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400120615/AcroRdrDC_2400120615_MUI.dmg

●Reader アップデータ

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400120615/AcroRdrDCUpd2400120615_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400120615/AcroRdrDCUpd2400120615_MUI.dmg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400120615/AcroRdrDCUpd2400120615_MUI_incr.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400120615/AcroRdrDCUpd2400120615_MUI_incr.dmg


2400120604 ----------------------

【SCA】(SingleClientApp) Unified App版

■AcrobatSCA 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcrobatSCADC2400120604_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcrobatSCADC2400120604_MUI.dmg

■AcrobatSCA アップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcrobatSCADCUpd2400120604.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcrobatSCADCUpd2400120604.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcrobatSCADCUpd2400120604_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcrobatSCADCUpd2400120604_incr.dmg

●ReaderSCA Mini 新規インストーラー

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcroRdrSCADC2400120604_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcroRdrSCADC2400120604_MUI.dmg

●ReaderSCA Miniアップデータ incrは差分のみ

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcroRdrSCADCUpd2400120604_MUI.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcroRdrSCADCUpd2400120604_MUI.dmg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcroRdrSCADCUpd2400120604_MUI_incr.pkg

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcroRdrSCADCUpd2400120604_MUI_incr.dmg


【従来版】 エンタープライズ版

■Acrobat 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcrobatDC2400120604_MUI.pkg

■Acrobat アップデータ

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcrobatDCUpd2400120604.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcrobatDCUpd2400120604.dmg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcrobatDCUpd2400120604_incr.pkg

https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcrobatDCUpd2400120604_incr.dmg

●Reader 新規インストーラー

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400120604/AcroRdrDC_2400120604_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400120604/AcroRdrDC_2400120604_MUI.dmg

●Reader アップデータ

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400120604/AcroRdrDCUpd2400120604_MUI.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400120604/AcroRdrDCUpd2400120604_MUI.dmg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400120604/AcroRdrDCUpd2400120604_MUI_incr.pkg

https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400120604/AcroRdrDCUpd2400120604_MUI_incr.dmg

|

【Acrobat SCA版】AcrobatDC Mini 無償版新規インストーラーリスト

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcroRdrSCADC2400320121_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcroRdrSCADC2400320112_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcroRdrSCADC2400221005_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220964/AcroRdrSCADC2400220964_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcroRdrSCADC2400220933_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/240022089x/AcroRdrSCADC240022089x_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcroRdrSCADC2400220857_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcroRdrSCADC2400220854_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcroRdrSCADC2400220759_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcroRdrSCADC2400220736_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcroRdrSCADC2400220687_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcroRdrSCADC2400120643_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120631/AcroRdrSCADC2400120631_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcroRdrSCADC2400120615_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcroRdrSCADC2400120604_MUI.pkg


https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcroRdrSCADC2400320121_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcroRdrSCADC2400320112_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcroRdrSCADC2400221005_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220964/AcroRdrSCADC2400220964_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcroRdrSCADC2400220933_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/240022089x/AcroRdrSCADC240022089x_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcroRdrSCADC2400220857_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcroRdrSCADC2400220854_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcroRdrSCADC2400220759_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcroRdrSCADC2400220736_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcroRdrSCADC2400220687_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcroRdrSCADC2400120643_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120631/AcroRdrSCADC2400120631_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcroRdrSCADC2400120615_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcroRdrSCADC2400120604_MUI.dmg

|

【Acrobat SCA版】AcrobatDC製品版新規インストーラーリスト

https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcrobatSCADC2400320121_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcrobatSCADC2400320112_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcrobatSCADC2400221005_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220964/AcrobatSCADC2400220964_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcrobatSCADC2400220933_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/240022089x/AcrobatSCADC240022089x_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcrobatSCADC2400220857_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcrobatSCADC2400220854_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcrobatSCADC2400220759_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcrobatSCADC2400220736_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcrobatSCADC2400220687_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcrobatSCADC2400120643_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120631/AcrobatSCADC2400120631_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcrobatSCADC2400120615_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcrobatSCADC2400120604_MUI.pkg


https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcrobatSCADC2400320121_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320112/AcrobatSCADC2400320112_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcrobatSCADC2400221005_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220964/AcrobatSCADC2400220964_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcrobatSCADC2400220933_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/240022089x/AcrobatSCADC240022089x_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220857/AcrobatSCADC2400220857_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220854/AcrobatSCADC2400220854_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220759/AcrobatSCADC2400220759_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220736/AcrobatSCADC2400220736_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220687/AcrobatSCADC2400220687_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120643/AcrobatSCADC2400120643_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120631/AcrobatSCADC2400120631_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120615/AcrobatSCADC2400120615_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400120604/AcrobatSCADC2400120604_MUI.dmg

|

SCA版 Acrobatの最新パッチURL 2400320121

SCA版 Acrobatの最新パッチURL

dld_Patch_Mini_Incr:旧称Readerの差分パッチ
dld_Patch_Mini_Cumulative:旧称Readerの累積パッチ
dld_Patch_Combined_Incr:製品版DCの差分パッチ
dld_Mini_Full: Reader版Miniの新規インストーラー上書き用
dld_Acrobat_Full:製品版DCの新規インストーラー上書き用
dld_Patch_Combined_Cumulative:製品版DCの累積パッチ
Penultimateが付くのはひとつ前のバージョン

----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Mini_Incr
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcroRdrSCADCUpd2400320121_MUI_incr.pkg
153.17 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Mini_Cumulative
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcroRdrSCADCUpd2400320121_MUI.pkg
494.43 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Combined_Incr
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcrobatSCADCUpd2400320121_incr.pkg
180.55 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Mini_Full
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcroRdrSCADC2400320121_MUI.pkg
579.97 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Acrobat_Full
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcrobatSCADC2400320121_MUI.pkg
1,420.57 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Combined_Cumulative
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320121/AcrobatSCADCUpd2400320121.pkg
675.7 MB

|

Adobe Acrobat SCA(SingleClientApp) Unified App版 最新アップデートを適応する


AppleScript サンプルコード

【スクリプトエディタで開く】 |

AppleScript サンプルソース(参考)
行番号ソース
001#!/usr/bin/env osascript
002----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
003(*
004SCA版のAcrobatの
005最新アップデーターのURLを取得
006インストール(アップデート)を試みます
007com.cocolog-nifty.quicktimer.icefloe *)
008----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
009use AppleScript version "2.8"
010use framework "Foundation"
011use framework "AppKit"
012use scripting additions
013
014property refMe : a reference to current application
015
016property refNSNotFound : a reference to 9.22337203685477E+18 + 5807
017
018#適応するパッケージ名の一部
019set strPkgKey to ("AcrobatSCADCUpd24") as text
020#set strPkgKey to ("AcrobatSCADC24") as text
021
022set strAdminName to ("管理者のショートユーザー名") as text
023set strAdminPW to ("管理者パスワード") as text
024
025##############################
026#ダウンロードするURL
027set ocidURLComponents to refMe's NSURLComponents's alloc()'s init()
028ocidURLComponents's setScheme:"https"
029ocidURLComponents's setHost:"armmf.adobe.com"
030ocidURLComponents's setPath:"/arm-manifests/mac/AcrobatDC/acrobatSCA/AcrobatSCAManifest.arm"
031set ocidURLStrings to ocidURLComponents's |URL|'s absoluteString()
032set ocidURL to refMe's NSURL's alloc()'s initWithString:(ocidURLStrings)
033log ocidURL's absoluteString() as text
034
035##############################
036#起動時に削除される項目にダウンロード
037set appFileManager to refMe's NSFileManager's defaultManager()
038set ocidTempDirURL to appFileManager's temporaryDirectory()
039set ocidUUID to refMe's NSUUID's alloc()'s init()
040set ocidUUIDString to ocidUUID's UUIDString
041set ocidSaveDirPathURL to ocidTempDirURL's URLByAppendingPathComponent:(ocidUUIDString) isDirectory:(true)
042#フォルダを作っておく
043set ocidAttrDict to refMe's NSMutableDictionary's alloc()'s initWithCapacity:0
044ocidAttrDict's setValue:(511) forKey:(refMe's NSFilePosixPermissions)
045set listDone to appFileManager's createDirectoryAtURL:(ocidSaveDirPathURL) withIntermediateDirectories:(true) attributes:(ocidAttrDict) |error| :(reference)
046if (item 2 of listDone) ≠ (missing value) then
047  log (item 2 of listDone)'s code() as text
048  log (item 2 of listDone)'s localizedDescription() as text
049  return "createDirectoryAtURL エラーしました"
050end if
051#保存パス
052set strSaveFileName to "AcrobatSCAManifest.pkg" as text
053set ocidSaveFilePathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:(strSaveFileName) isDirectory:(false)
054
055##############################
056#NSDATAでダウンロード
057set ocidOption to (refMe's NSDataReadingMappedIfSafe)
058set listResponse to refMe's NSData's alloc()'s initWithContentsOfURL:(ocidURL) options:(ocidOption) |error| :(reference)
059if (item 2 of listResponse) = (missing value) then
060  set ocidReadData to (item 1 of listResponse)
061else if (item 2 of listResponse) ≠ (missing value) then
062  log (item 2 of listResponse)'s code() as text
063  log (item 2 of listResponse)'s localizedDescription() as text
064  return "エラーしました"
065end if
066
067##############################
068#保存
069set ocidOption to (refMe's NSDataWritingAtomic)
070set listDone to ocidReadData's writeToURL:(ocidSaveFilePathURL) options:(ocidOption) |error| :(reference)
071if (item 2 of listDone) ≠ (missing value) then
072  log (item 2 of listDone)'s code() as text
073  log (item 2 of listDone)'s localizedDescription() as text
074  return "エラーしました"
075end if
076
077##############################
078#PKG解凍
079set strPkgPath to (ocidSaveFilePathURL's |path|()) as text
080#解凍先
081set ocidDistDirPathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:("UnArchived") isDirectory:(true)
082set strDistPath to (ocidDistDirPathURL's |path|()) as text
083#コマンド実行
084set strComandText to ("/usr/sbin/pkgutil  --expand  \"" & strPkgPath & "\" \"" & strDistPath & "\"") as text
085log strComandText
086try
087  do shell script strComandText
088on error
089  return "pkgutilでエラーになりました"
090end try
091
092##############################
093#マニフェスト読み込み
094#XMLパス
095set ocidXmlFilePathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:("UnArchived/ASSET/AcrobatSCAManifest.xml") isDirectory:(true)
096##############################
097#NSDATAに読み込み
098set ocidOption to (refMe's NSDataReadingMappedIfSafe)
099set listResponse to refMe's NSData's alloc()'s initWithContentsOfURL:(ocidXmlFilePathURL) options:(ocidOption) |error| :(reference)
100if (item 2 of listResponse) = (missing value) then
101  set ocidReadData to (item 1 of listResponse)
102else if (item 2 of listResponse) ≠ (missing value) then
103  log (item 2 of listResponse)'s code() as text
104  log (item 2 of listResponse)'s localizedDescription() as text
105  return "initWithContentsOfURL エラーしました"
106end if
107##############################
108#XMLに読み込む
109set ocidOption to (refMe's NSXMLNodePreserveAll) + (refMe's NSXMLDocumentTidyHTML)
110set listResponse to refMe's NSXMLDocument's alloc()'s initWithData:(ocidReadData) options:(ocidOption) |error| :(reference)
111if (item 2 of listResponse) = (missing value) then
112  set ocidXMLDoc to (item 1 of listResponse)
113else if (item 2 of listResponse) ≠ (missing value) then
114  log (item 2 of listResponse)'s code() as text
115  log (item 2 of listResponse)'s localizedDescription() as text
116  log "initWithData エラー 警告がありました"
117  set ocidXMLDoc to (item 1 of listResponse)
118end if
119##############################
120#URL収集用
121set ocidURLArray to refMe's NSMutableArray's alloc()'s initWithCapacity:(0)
122
123##############################
124#XML解析
125#ROOT
126set ocidRootElement to ocidXMLDoc's rootElement()
127set ocidActionItemsArray to ocidRootElement's elementsForName:("DownloadActionItems")
128set ocidActionItems to ocidActionItemsArray's firstObject()
129set ocidItemArray to (ocidActionItems's elementsForName:("dItem"))
130repeat with itemArray in ocidItemArray
131  
132  set ocidID to (itemArray's attributeForName:("id"))'s stringValue()
133  set ocidHost to (itemArray's attributeForName:("httpURLBase"))'s stringValue()
134  set ocidPath to (itemArray's attributeForName:("URL"))'s stringValue()
135  set ocidLastPath to (itemArray's attributeForName:("fileName"))'s stringValue()
136  
137  if (ocidLastPath as text) contains strPkgKey then
138    if (ocidLastPath as text) contains "incr.pkg" then
139      log "差分アップデータあり"
140    else
141      set ocidPkgURL to (refMe's NSURL's alloc()'s initWithString:(ocidHost))
142      set ocidPkgURL to (ocidPkgURL's URLByAppendingPathComponent:(ocidPath))
143      set ocidPkgURL to (ocidPkgURL's URLByAppendingPathComponent:(ocidLastPath))
144      set ocidSetURL to ocidPkgURL's absoluteString()
145      (ocidURLArray's addObject:(ocidSetURL))
146    end if
147  end if
148end repeat
149
150##############################
151#結果
152
153set numCntUrlArray to ocidURLArray's |count|()
154if numCntUrlArray > 1 then
155  display alert "バックアップバージョンあり処理終了" giving up after 2
156  return "バックアップバージョンあり処理終了"
157else if numCntUrlArray = 0 then
158  display alert "URL収集失敗処理終了" giving up after 2
159  return "URL収集失敗処理終了"
160else if numCntUrlArray = 1 then
161  set ocidPkgURLstr to ocidURLArray's firstObject()
162  set ocidPkgURL to refMe's NSURL's alloc()'s initWithString:(ocidPkgURLstr)
163end if
164
165##############################
166#NSDATAでダウンロード
167set ocidOption to (refMe's NSDataReadingMappedIfSafe)
168set listResponse to refMe's NSData's alloc()'s initWithContentsOfURL:(ocidPkgURL) options:(ocidOption) |error| :(reference)
169if (item 2 of listResponse) = (missing value) then
170  set ocidPkgData to (item 1 of listResponse)
171else if (item 2 of listResponse) ≠ (missing value) then
172  log (item 2 of listResponse)'s code() as text
173  log (item 2 of listResponse)'s localizedDescription() as text
174  return "エラーしました"
175end if
176
177##############################
178#保存パス
179set ocidFileName to ocidPkgURL's lastPathComponent()
180set ocidPkgFilePathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:(ocidFileName) isDirectory:(false)
181#保存
182set ocidOption to (refMe's NSDataWritingAtomic)
183set listDone to ocidPkgData's writeToURL:(ocidPkgFilePathURL) options:(ocidOption) |error| :(reference)
184if (item 2 of listDone) ≠ (missing value) then
185  log (item 2 of listDone)'s code() as text
186  log (item 2 of listDone)'s localizedDescription() as text
187  return "エラーしました"
188end if
189
190##############################
191#インストール実行
192set strPkgFilePath to (ocidPkgFilePathURL's |path|()) as text
193set strCommandText to ("/bin/zsh -c '/usr/bin/sudo /usr/sbin/installer -pkg \"" & strPkgFilePath & "\" -target / -dumplog -allowUntrusted -lang ja'")
194log strCommandText
195try
196  ##UIを使ったインストールをする場合
197  # do shell script strCommandText
198  
199  ##アプリケーションにして実行する場合
200  do shell script strCommandText user name strAdminName password strAdminPW with administrator privileges
201on error
202  return "インストールに失敗しました"
203end try
204
AppleScriptで生成しました

|

SCA版 Acrobatの24.002.21005 Planned update, August 13, 2024 パッチURL

SCA版 Acrobatの最新パッチURL

dld_Patch_Mini_Incr:旧称Readerの差分パッチ
dld_Patch_Mini_Cumulative:旧称Readerの累積パッチ
dld_Patch_Combined_Incr:製品版DCの差分パッチ
dld_Mini_Full: Reader版Miniの新規インストーラー上書き用
dld_Acrobat_Full:製品版DCの新規インストーラー上書き用
dld_Patch_Combined_Cumulative:製品版DCの累積パッチ
Penultimateが付くのはひとつ前のバージョン

----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Mini_Incr
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcroRdrSCADCUpd2400221005_MUI_incr.pkg
152.56 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Mini_Cumulative
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcroRdrSCADCUpd2400221005_MUI.pkg
471.46 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Combined_Incr
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcrobatSCADCUpd2400221005_incr.pkg
184.42 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Mini_Full
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcroRdrSCADC2400221005_MUI.pkg
557.07 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Acrobat_Full
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcrobatSCADC2400221005_MUI.pkg
1,395.29 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Combined_Cumulative
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400221005/AcrobatSCADCUpd2400221005.pkg
649.65 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Patch_Mini_Incr
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220964/AcroRdrSCADCUpd2400220964_MUI_incr.pkg
132.27 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Patch_Mini_Cumulative
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220964/AcroRdrSCADCUpd2400220964_MUI.pkg
460.19 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Patch_Combined_Incr
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220964/AcrobatSCADCUpd2400220964_incr.pkg
159.56 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Acrobat_Full
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220964/AcrobatSCADC2400220964_MUI.pkg
1,383.12 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Patch_Combined_Cumulative
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220964/AcrobatSCADCUpd2400220964.pkg
636.75 MB

|

Acrobat SCA版 アップデータ2400220964

SCA版 Acrobatの最新パッチURL

dld_Patch_Mini_Incr:旧称Readerの差分パッチ
dld_Patch_Mini_Cumulative:旧称Readerの累積パッチ
dld_Patch_Combined_Incr:製品版DCの差分パッチ
dld_Mini_Full: Reader版Miniの新規インストーラー上書き用
dld_Acrobat_Full:製品版DCの新規インストーラー上書き用
dld_Patch_Combined_Cumulative:製品版DCの累積パッチ

----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Mini_Incr
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220964/AcroRdrSCADCUpd2400220964_MUI_incr.pkg
132.27 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Mini_Cumulative
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220964/AcroRdrSCADCUpd2400220964_MUI.pkg
460.19 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Combined_Incr
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220964/AcrobatSCADCUpd2400220964_incr.pkg
159.56 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Mini_Full
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220964/AcroRdrSCADC2400220964_MUI.pkg
545.82 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Acrobat_Full
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220964/AcrobatSCADC2400220964_MUI.pkg
1,383.12 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Combined_Cumulative
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220964/AcrobatSCADCUpd2400220964.pkg
636.75 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Patch_Mini_Incr
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220893/AcroRdrSCADCUpd2400220893_MUI_incr.pkg
125.84 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Patch_Mini_Cumulative
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220893/AcroRdrSCADCUpd2400220893_MUI.pkg
456.47 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Patch_Combined_Incr
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220893/AcrobatSCADCUpd2400220893_incr.pkg
156.23 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Acrobat_Full
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220893/AcrobatSCADC2400220893_MUI.pkg
1,382.83 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Patch_Combined_Cumulative
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220893/AcrobatSCADCUpd2400220893.pkg
635.96 MB

|

Acrobat SCA版 アップデータ2400220933

2400220933は不具合率高いので使用しない方がいい


SCA版 Acrobatの最新パッチURL

dld_Patch_Mini_Incr:旧称Readerの差分パッチ
dld_Patch_Mini_Cumulative:旧称Readerの累積パッチ
dld_Patch_Combined_Incr:製品版DCの差分パッチ
dld_Mini_Full: Reader版Miniの新規インストーラー上書き用
dld_Acrobat_Full:製品版DCの新規インストーラー上書き用
dld_Patch_Combined_Cumulative:製品版DCの累積パッチ

----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Mini_Incr
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcroRdrSCADCUpd2400220933_MUI_incr.pkg
139.34 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Mini_Cumulative
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcroRdrSCADCUpd2400220933_MUI.pkg
459.83 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Combined_Incr
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcrobatSCADCUpd2400220933_incr.pkg
167.61 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Mini_Full
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcroRdrSCADC2400220933_MUI.pkg
545.7 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Acrobat_Full
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcrobatSCADC2400220933_MUI.pkg
1,382.89 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Patch_Combined_Cumulative
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220933/AcrobatSCADCUpd2400220933.pkg
636.42 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Patch_Mini_Incr
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220893/AcroRdrSCADCUpd2400220893_MUI_incr.pkg
125.84 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Patch_Mini_Cumulative
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220893/AcroRdrSCADCUpd2400220893_MUI.pkg
456.47 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Patch_Combined_Incr
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220893/AcrobatSCADCUpd2400220893_incr.pkg
156.23 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Acrobat_Full
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220893/AcrobatSCADC2400220893_MUI.pkg
1,382.83 MB
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
dld_Penultimate_Patch_Combined_Cumulative
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400220893/AcrobatSCADCUpd2400220893.pkg
635.96 MB

|

その他のカテゴリー

Accessibility Acrobat Acrobat 2020 Acrobat AddOn Acrobat Annotation Acrobat ARMDC Acrobat AV2 Acrobat BookMark Acrobat Classic Acrobat DC Acrobat Dialog Acrobat Distiller Acrobat Form Acrobat JS Acrobat Manifest Acrobat Menu Acrobat Open Acrobat Plugin Acrobat Preferences Acrobat Preflight Acrobat python Acrobat Reader Acrobat SCA Acrobat SCA Updater Acrobat Sequ Acrobat Sign Acrobat Stamps Acrobat Watermark Acrobat Windows Acrobat Windows Reader Admin Admin Account Admin Apachectl Admin configCode Admin Device Management Admin LaunchServices Admin Locationd Admin loginitem Admin Maintenance Admin Mobileconfig Admin Permission Admin Pkg Admin Power Management Admin Printer Admin SetUp Admin SMB Admin Support Admin System Information Admin Tools Admin Users Admin Volumes Adobe Adobe FDKO Adobe RemoteUpdateManager AppKit Apple AppleScript AppleScript do shell script AppleScript List AppleScript ObjC AppleScript Osax AppleScript PDF AppleScript Pictures AppleScript record AppleScript Script Editor AppleScript Script Menu AppleScript Shortcuts AppleScript Shortcuts Events AppleScript System Events AppleScript System Events Plist AppleScript Video Applications AppStore Archive Attributes Automator BackUp Barcode Barcode QR Barcode QR Decode Bash Basic Basic Path Bluetooth BOX Browser Calendar CD/DVD Choose Chrome CIImage CityCode CloudStorage Color com.apple.LaunchServices.OpenWith Console Contacts CotEditor CURL current application Date&Time delimiters Desktop Device Diff Disk Dock DropBox Droplet eMail Encode % Encode Decode Encode UTF8 Error EXIFData ffmpeg File Finder Firefox Folder FolderAction Fonts GIF github Guide HTML HTML Entity Icon Illustrator Image Events Image2PDF ImageOptim iPhone iWork Javascript Jedit Json Label Leading Zero List locationd LRC lsappinfo LSSharedFileList m3u8 Mail MakePDF Map Math Media Media AVAsset Media AVconvert Media AVFoundation Media AVURLAsset Media Movie Media Music Memo Messages Microsoft Microsoft Edge Microsoft Excel Mouse Music NetWork Notes NSArray NSArray Sort NSBezierPath NSBitmapImageRep NSBundle NSCFBoolean NSCharacterSet NSColor NSColorList NSData NSDecimalNumber NSDictionary NSError NSEvent NSFileAttributes NSFileManager NSFileManager enumeratorAtURL NSFont NSFontManager NSGraphicsContext NSImage NSIndex NSKeyedArchiver NSKeyedUnarchiver NSLocale NSMutableArray NSMutableDictionary NSMutableString NSNotFound NSNumber NSOpenPanel NSPasteboard NSpoint NSPredicate NSPrintOperation NSRange NSRect NSRegularExpression NSRunningApplication NSScreen NSSize NSString NSString stringByApplyingTransform NSStringCompareOptions NSTask NSTimeZone NSURL NSURL File NSURLBookmark NSURLComponents NSURLResourceKey NSURLSession NSUserDefaults NSUUID NSView NSWorkspace Numbers OAuth OneDrive PDF PDFAnnotation PDFAnnotationWidget PDFContext PDFDisplayBox PDFDocumentPermissions PDFImageRep PDFKit PDFnUP PDFOutline perl Photoshop PlistBuddy pluginkit postalcode PostScript prefPane Preview Python QuickLook QuickTime ReadMe Regular Expression Reminders ReName Repeat RTF Safari SaveFile ScreenCapture ScreenSaver SF Symbols character id SF Symbols Entity sips Skype Slack Sound Spotlight sqlite SRT StandardAdditions Swift System Settings TCC TemporaryItems Terminal Text Text CSV Text MD Text TSV TextEdit Tools Translate Trash Twitter Typography UI Unit Conversion UTType valueForKeyPath Video VisionKit Visual Studio Code Wacom webarchive webp Wifi Windows XML XML EPUB XML OPML XML Plist XML RSS XML savedSearch XML SVG XML TTML XML webloc XML XMP YouTube zoom