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 |
---|
009 | use AppleScript version "2.8" |
---|
010 | use framework "Foundation" |
---|
011 | use framework "AppKit" |
---|
012 | use scripting additions |
---|
013 | property refMe : a reference to current application |
---|
014 | |
---|
015 | |
---|
016 | #対象のURL |
---|
017 | set strURL to ("https://www.adobe.com/devnet-docs/acrobatetk/tools/ReleaseNotesDC/index.html") as text |
---|
018 | |
---|
019 | #URL |
---|
020 | set ocidURLString to (refMe's NSString's stringWithString:(strURL)) |
---|
021 | set ocidURL to (refMe's NSURL's alloc()'s initWithString:(ocidURLString)) |
---|
022 | |
---|
023 | #XML |
---|
024 | set ocidOption to (refMe's NSXMLDocumentTidyHTML) |
---|
025 | set listReadXMLDoc to (refMe's NSXMLDocument's alloc()'s initWithContentsOfURL:(ocidURL) options:(ocidOption) |error| :(reference)) |
---|
026 | set ocidReadXMLDoc to (item 1 of listReadXMLDoc) |
---|
027 | set ocidRootElement to ocidReadXMLDoc's rootElement() |
---|
028 | set ocidHeadElement to (ocidRootElement's elementsForName:("body"))'s firstObject() |
---|
029 | set listResponse to (ocidHeadElement's nodesForXPath:("//div[@id='continuous-track-installers']/ul/li/p/a") |error| :(reference)) |
---|
030 | if (item 2 of listResponse) = (missing value) then |
---|
031 | set ocidAArray to (item 1 of listResponse) |
---|
032 | else 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 |
---|
037 | end if |
---|
038 | |
---|
039 | #出力用テキスト |
---|
040 | set ocidTempstring to refMe's NSMutableString's alloc()'s initWithCapacity:(0) |
---|
041 | |
---|
042 | repeat 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 | |
---|
066 | end repeat |
---|
067 | |
---|
068 | set ocidOutPutstring to refMe's NSMutableString's alloc()'s initWithCapacity:(0) |
---|
069 | |
---|
070 | set itemVersionArray to ocidTempstring's componentsSeparatedByString:("\n") |
---|
071 | itemVersionArray's removeLastObject() |
---|
072 | repeat 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)) |
---|
142 | end repeat |
---|
143 | ###### |
---|
144 | |
---|
145 | |
---|
146 | ###ディレクトリ |
---|
147 | set appFileManager to refMe's NSFileManager's defaultManager() |
---|
148 | set ocidTempDirURL to appFileManager's temporaryDirectory() |
---|
149 | set ocidUUID to refMe's NSUUID's alloc()'s init() |
---|
150 | set ocidUUIDString to ocidUUID's UUIDString |
---|
151 | set ocidSaveDirPathURL to ocidTempDirURL's URLByAppendingPathComponent:(ocidUUIDString) isDirectory:true |
---|
152 | # |
---|
153 | set ocidAttrDict to refMe's NSMutableDictionary's alloc()'s initWithCapacity:0 |
---|
154 | ocidAttrDict's setValue:(511) forKey:(refMe's NSFilePosixPermissions) |
---|
155 | set listBoolMakeDir to appFileManager's createDirectoryAtURL:(ocidSaveDirPathURL) withIntermediateDirectories:true attributes:(ocidAttrDict) |error| :(reference) |
---|
156 | ###パス |
---|
157 | set strFileName to "AcraobatInstallURL.txt" as text |
---|
158 | set ocidSaveFilePathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:(strFileName) isDirectory:false |
---|
159 | |
---|
160 | set listDone to ocidOutPutstring's writeToURL:(ocidSaveFilePathURL) atomically:(true) encoding:(refMe's NSUTF8StringEncoding) |error| :(reference) |
---|
161 | if (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 | |
---|
165 | else if (item 1 of listDone) is false then |
---|
166 | log (item 2 of listDone)'s localizedDescription() as text |
---|
167 | return "保存に失敗しました" |
---|
168 | end if |
---|
169 | |
---|
170 | |
---|
171 | |
---|
172 | return (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