Acrobat Classic

[AcrobatSCA Classic][Acrobat2024] 旧SCA版のClassicが名称変更 Adobe Acrobat 2024に

Acrobat Classicが呼称変更
旧 Adobe Acrobat Classic
新 Adobe Acrobat 2024

202504210848191_964x471_20250421211101

リリースノート

アップデート24.001.30246
dmgへのリンクは切れていますが https://ardownload3.adobe.com/pub/adobe/acrobat/mac/Classic/2400130246/AcrobatSCAClassicUpd2400130246.dmg
pkgへのリンクは生きています
(リンクが切れているのには何か意味があるなら、アップデートしない方が良いのかも?)
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/Classic/2400130246/AcrobatSCAClassicUpd2400130246.pkg


新規インストーラー公式が用意された
20250401010608(4月21日時点)
https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/osx10/AcrobatSCA_Classic_Web_WWMUI.dmg
従来のサポートダウンロードURL(内容は同じ)
20240521140056(4月21日時点)
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatClassic/2400130123/AcrobatSCA_Classic_Web_WWMUI.dmg


| | コメント (0)

[AcrobatSCA Classic] 新規インストーラーとアップデーターのURL取得

2024101009281080x840_1442
新規インストーラー公式が用意された
https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/osx10/AcrobatSCA_Classic_Web_WWMUI.dmg
従来のサポートダウンロードURL(内容は同じ)
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatClassic/2400130123/AcrobatSCA_Classic_Web_WWMUI.dmg


AppleScript サンプルコード

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

AppleScript サンプルソース(参考)
行番号ソース
001#!/usr/bin/env osascript
002----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
003(*
004シングルクライアントアプリケーションSCA版のAcrobatClassicの
005最新アップデーターのURLを取得します
006com.cocolog-nifty.quicktimer.icefloe *)
007----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
008use AppleScript version "2.8"
009use framework "Foundation"
010use framework "AppKit"
011use scripting additions
012
013property refMe : a reference to current application
014
015property refNSNotFound : a reference to 9.22337203685477E+18 + 5807
016
017##############################
018#バージョンURL
019set strVtextURL to ("https://armmf.adobe.com/arm-manifests/mac/Classic/acrobatSCA/current_version.txt") as text
020set ocidVtextURLString to refMe's NSString's stringWithString:(strVtextURL)
021set ocidVtextURL to refMe's NSURL's alloc()'s initWithString:(ocidVtextURLString)
022##############################
023#NSDATAでダウンロード
024set ocidOption to (refMe's NSDataReadingMappedIfSafe)
025set listResponse to refMe's NSData's alloc()'s initWithContentsOfURL:(ocidVtextURL) options:(ocidOption) |error| :(reference)
026if (item 2 of listResponse) = (missing value) then
027  log "正常処理"
028  set ocidReadVtextData to (item 1 of listResponse)
029else if (item 2 of listResponse) ≠ (missing value) then
030  log (item 2 of listResponse)'s code() as text
031  log (item 2 of listResponse)'s localizedDescription() as text
032  return "エラーしました"
033end if
034##############################
035#STRINGに
036set ocidVtext to refMe's NSString's alloc()'s initWithData:(ocidReadVtextData) encoding:(refMe's NSUTF8StringEncoding)
037
038
039##############################
040#ダウンロードするURL
041set ocidURLComponents to refMe's NSURLComponents's alloc()'s init()
042ocidURLComponents's setScheme:("https")
043ocidURLComponents's setHost:("armmf.adobe.com")
044ocidURLComponents's setPath:("/arm-manifests/mac/Classic/acrobatSCA/AcrobatSCAManifest.arm")
045set ocidURLStrings to ocidURLComponents's |URL|'s absoluteString()
046set ocidURL to refMe's NSURL's alloc()'s initWithString:(ocidURLStrings)
047log ocidURL's absoluteString() as text
048
049
050
051##############################
052#起動時に削除される項目にダウンロード
053set appFileManager to refMe's NSFileManager's defaultManager()
054set ocidTempDirURL to appFileManager's temporaryDirectory()
055set ocidUUID to refMe's NSUUID's alloc()'s init()
056set ocidUUIDString to ocidUUID's UUIDString
057set ocidSaveDirPathURL to ocidTempDirURL's URLByAppendingPathComponent:(ocidUUIDString) isDirectory:(true)
058#フォルダを作っておく
059set ocidAttrDict to refMe's NSMutableDictionary's alloc()'s initWithCapacity:0
060ocidAttrDict's setValue:(511) forKey:(refMe's NSFilePosixPermissions)
061set listDone to appFileManager's createDirectoryAtURL:(ocidSaveDirPathURL) withIntermediateDirectories:(true) attributes:(ocidAttrDict) |error| :(reference)
062if (item 1 of listDone) is true then
063  log "createDirectoryAtURL 正常処理"
064else if (item 2 of listDone) ≠ (missing value) then
065  log (item 2 of listDone)'s code() as text
066  log (item 2 of listDone)'s localizedDescription() as text
067  return "createDirectoryAtURL エラーしました"
068end if
069#保存パス
070set strSaveFileName to "AcrobatSCAManifest.pkg" as text
071set ocidSaveFilePathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:(strSaveFileName) isDirectory:(false)
072
073##############################
074#NSDATAでダウンロード
075set ocidOption to (refMe's NSDataReadingMappedIfSafe)
076set listResponse to refMe's NSData's alloc()'s initWithContentsOfURL:(ocidURL) options:(ocidOption) |error| :(reference)
077if (item 2 of listResponse) = (missing value) then
078  log "正常処理"
079  set ocidReadData to (item 1 of listResponse)
080else if (item 2 of listResponse) ≠ (missing value) then
081  log (item 2 of listResponse)'s code() as text
082  log (item 2 of listResponse)'s localizedDescription() as text
083  return "エラーしました"
084end if
085
086##############################
087#保存
088set ocidOption to (refMe's NSDataWritingAtomic)
089set listDone to ocidReadData's writeToURL:(ocidSaveFilePathURL) options:(ocidOption) |error| :(reference)
090if (item 1 of listDone) is true then
091  log "正常処理"
092else if (item 2 of listDone) ≠ (missing value) then
093  log (item 2 of listDone)'s code() as text
094  log (item 2 of listDone)'s localizedDescription() as text
095  return "エラーしました"
096end if
097##############################
098#PKG解凍
099set strPkgPath to (ocidSaveFilePathURL's |path|()) as text
100#解凍先
101set ocidDistDirPathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:("UnArchived") isDirectory:(true)
102set strDistPath to (ocidDistDirPathURL's |path|()) as text
103#コマンド実行
104set strComandText to ("/usr/sbin/pkgutil  --expand  \"" & strPkgPath & "\" \"" & strDistPath & "\"") as text
105log strComandText
106try
107  do shell script strComandText
108on error
109  return "pkgutilでエラーになりました"
110end try
111
112##############################
113#マニフェスト読み込み
114#XMLパス
115set ocidXmlFilePathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:("UnArchived/ASSET/AcrobatSCAManifest.xml") isDirectory:(true)
116##############################
117#NSDATAに読み込み
118set ocidOption to (refMe's NSDataReadingMappedIfSafe)
119set listResponse to refMe's NSData's alloc()'s initWithContentsOfURL:(ocidXmlFilePathURL) options:(ocidOption) |error| :(reference)
120if (item 2 of listResponse) = (missing value) then
121  log "initWithContentsOfURL 正常処理"
122  set ocidReadData to (item 1 of listResponse)
123else if (item 2 of listResponse) ≠ (missing value) then
124  log (item 2 of listResponse)'s code() as text
125  log (item 2 of listResponse)'s localizedDescription() as text
126  return "initWithContentsOfURL エラーしました"
127end if
128##############################
129#XMLに読み込む
130set ocidOption to (refMe's NSXMLNodePreserveAll) + (refMe's NSXMLDocumentTidyHTML)
131set listResponse to refMe's NSXMLDocument's alloc()'s initWithData:(ocidReadData) options:(ocidOption) |error| :(reference)
132if (item 2 of listResponse) = (missing value) then
133  log "initWithData 正常処理"
134  set ocidXMLDoc to (item 1 of listResponse)
135else if (item 2 of listResponse) ≠ (missing value) then
136  log (item 2 of listResponse)'s code() as text
137  log (item 2 of listResponse)'s localizedDescription() as text
138  log "initWithData エラー 警告がありました"
139  set ocidXMLDoc to (item 1 of listResponse)
140end if
141##############################
142#出力用テキスト
143set ocidOutPutstring to refMe's NSMutableString's alloc()'s initWithCapacity:(0)
144ocidOutPutstring's appendString:("SCA版 Acrobat Classicの最新パッチURL\n\n")
145
146set strSetInfoStr to ("Acrobat Classic アップデート\nマニフェストにはAcroRdrとリーダ版\ndld_Patch_Mini_Cumulativeがあるがファイルは実在しない\n差分のIncrアップデータはXML上でコメントアウトされている\nPenultimateが付くのはひとつ前のバージョン\n") as text
147
148ocidOutPutstring's appendString:(strSetInfoStr)
149ocidOutPutstring's appendString:("\n")
150#最新バージョン
151ocidOutPutstring's appendString:("最新バージョン: ")
152ocidOutPutstring's appendString:(ocidVtext)
153ocidOutPutstring's appendString:("\n")
154
155##############################
156#初期バージョン
157(ocidOutPutstring's appendString:("\n"))
158(ocidOutPutstring's appendString:("\n"))
159(ocidOutPutstring's appendString:("初期バージョン"))
160(ocidOutPutstring's appendString:("\n"))
161(ocidOutPutstring's appendString:("https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/osx10/AcrobatSCA_Classic_Web_WWMUI.dmg\n"))
162(ocidOutPutstring's appendString:("\n"))
163(ocidOutPutstring's appendString:("サポートダウンロード内容は同じ"))
164(ocidOutPutstring's appendString:("\n"))
165(ocidOutPutstring's appendString:("https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatClassic/2400130123/AcrobatSCA_Classic_Web_WWMUI.dmg"))
166(ocidOutPutstring's appendString:("\n"))
167(ocidOutPutstring's appendString:("\n"))
168
169##############################
170#XML解析
171#ROOT
172set ocidRootElement to ocidXMLDoc's rootElement()
173set ocidActionItemsArray to ocidRootElement's elementsForName:("DownloadActionItems")
174set ocidActionItems to ocidActionItemsArray's firstObject()
175set ocidItemArray to (ocidActionItems's elementsForName:("dItem"))
176repeat with itemArray in ocidItemArray
177  (ocidOutPutstring's appendString:("----+----1----+----2----+-----3----+----4----+----5----+----6----+----7"))
178  (ocidOutPutstring's appendString:("\n"))
179  set ocidID to (itemArray's attributeForName:("id"))'s stringValue()
180  (ocidOutPutstring's appendString:(ocidID))
181  (ocidOutPutstring's appendString:("\n"))
182  #URL
183  set ocidHost to (itemArray's attributeForName:("httpURLBase"))'s stringValue()
184  set ocidPath to (itemArray's attributeForName:("URL"))'s stringValue()
185  set ocidLastPath to (itemArray's attributeForName:("fileName"))'s stringValue()
186  set ocidPkgURL to (refMe's NSURL's alloc()'s initWithString:(ocidHost))
187  set ocidPkgURL to (ocidPkgURL's URLByAppendingPathComponent:(ocidPath))
188  set ocidPkgURL to (ocidPkgURL's URLByAppendingPathComponent:(ocidLastPath))
189  set ocidSetURL to ocidPkgURL's absoluteString()
190  (ocidOutPutstring's appendString:(ocidSetURL))
191  (ocidOutPutstring's appendString:("\n"))
192  # log (itemArray's attributeForName:("signingEntity"))'s stringValue as text
193  # log (itemArray's attributeForName:("hashValue"))'s stringValue as text
194  #PKGのファイルサイズ
195  set ocidFileSizeStr to (itemArray's attributeForName:("size"))'s stringValue()
196  set ocidFileSizeDec to (refMe's NSDecimalNumber's alloc()'s initWithString:(ocidFileSizeStr))
197  set ocidThousandDec to (refMe's NSDecimalNumber's alloc()'s initWithString:("1000000"))
198  set ocidMBDec to (ocidFileSizeDec's decimalNumberByDividingBy:(ocidThousandDec))
199  set ocidFormatter to refMe's NSNumberFormatter's alloc()'s init()
200  (ocidFormatter's setRoundingMode:(refMe's NSNumberFormatterRoundFloor))
201  (ocidFormatter's setNumberStyle:(refMe's NSNumberFormatterDecimalStyle))
202  (ocidFormatter's setMaximumFractionDigits:(2))
203  set ocidMBstr to (ocidFormatter's stringFromNumber:(ocidMBDec))
204  (ocidOutPutstring's appendString:(ocidMBstr))
205  (ocidOutPutstring's appendString:(" MB"))
206  (ocidOutPutstring's appendString:("\n"))
207  
208end repeat
209
210
211##############################
212#テキスト保存
213set ocidSaveTextFilePathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:("AcrobatSCAManifest.txt") isDirectory:(false)
214set listDone to ocidOutPutstring's writeToURL:(ocidSaveTextFilePathURL) atomically:(true) encoding:(refMe's NSUTF8StringEncoding) |error| :(reference)
215if (item 1 of listDone) is true then
216  log "writeToURL 正常処理"
217else if (item 2 of listDone) ≠ (missing value) then
218  log (item 2 of listDone)'s code() as text
219  log (item 2 of listDone)'s localizedDescription() as text
220  return "writeToURL エラーしました"
221end if
222
223##############################
224#開く
225set appSharedWorkspace to refMe's NSWorkspace's sharedWorkspace()
226set boolDone to appSharedWorkspace's openURL:(ocidSaveTextFilePathURL)
227
228if (boolDone) is true then
229  return "正常処理"
230else if (boolDone) is false then
231  return "エラーしました"
232end if
233
AppleScriptで生成しました

|

[AcrobatSCA Classic]Acrobat Classic SCA (SingleClientApp)版 Unified App 版

ClassicTrackに変更が入った
Gvfzj7ca4aandxe

バージョン確認用のテキストURLは
https://armmf.adobe.com/arm-manifests/mac/Classic/acrobatSCA/current_version.txt
マニフェストXMLのURLは
https://armmf.adobe.com/arm-manifests/mac/Classic/acrobatSCA/AcrobatSCAManifest.arm

AcrobatSCAManifest.arm
こちらは圧縮pkg形式なので
/usr/sbin/pkgutil --expand で解凍
解凍されると
ASSET/AcrobatSCAManifest.xmlにマニフェストのXMLが入っている

ダウンロードファイル
https://www.adobe.com/devnet-docs/acrobatetk/tools/ReleaseNotesDC/acrobatclassic/acrobatclassicbase.html#acrobatclassic
について
ClassicトラックにもかかわらずSCAの文字がありバージョンも24になっている
設定ファイルも別となり
完全ではないが※、別アプリとして運用可能だし
同時起動できる


AppleScript サンプルコード

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

AppleScript サンプルソース(参考)
行番号ソース
001#! /usr/bin/env osascript
002----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
003(*
004シングルクライアントアプリケーションSCA版のAcrobatClassicの
005最新アップデーターのURLを取得します
006com.cocolog-nifty.quicktimer.icefloe *)
007----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
008use AppleScript version "2.8"
009use framework "Foundation"
010use framework "AppKit"
011use scripting additions
012
013property refMe : a reference to current application
014
015property refNSNotFound : a reference to 9.22337203685477E+18 + 5807
016
017##############################
018#バージョンURL
019set strVtextURL to ("https://armmf.adobe.com/arm-manifests/mac/Classic/acrobatSCA/current_version.txt") as text
020set ocidVtextURLString to refMe's NSString's stringWithString:(strVtextURL)
021set ocidVtextURL to refMe's NSURL's alloc()'s initWithString:(ocidVtextURLString)
022##############################
023#NSDATAでダウンロード
024set ocidOption to (refMe's NSDataReadingMappedIfSafe)
025set listResponse to refMe's NSData's alloc()'s initWithContentsOfURL:(ocidVtextURL) options:(ocidOption) |error| :(reference)
026if (item 2 of listResponse) = (missing value) then
027  log "正常処理"
028  set ocidReadVtextData to (item 1 of listResponse)
029else if (item 2 of listResponse) ≠ (missing value) then
030  log (item 2 of listResponse)'s code() as text
031  log (item 2 of listResponse)'s localizedDescription() as text
032  return "エラーしました"
033end if
034##############################
035#STRINGに
036set ocidVtext to refMe's NSString's alloc()'s initWithData:(ocidReadVtextData) encoding:(refMe's NSUTF8StringEncoding)
037
038
039##############################
040#ダウンロードするURL
041set ocidURLComponents to refMe's NSURLComponents's alloc()'s init()
042ocidURLComponents's setScheme:("https")
043ocidURLComponents's setHost:("armmf.adobe.com")
044ocidURLComponents's setPath:("/arm-manifests/mac/Classic/acrobatSCA/AcrobatSCAManifest.arm")
045set ocidURLStrings to ocidURLComponents's |URL|'s absoluteString()
046set ocidURL to refMe's NSURL's alloc()'s initWithString:(ocidURLStrings)
047log ocidURL's absoluteString() as text
048
049
050
051##############################
052#起動時に削除される項目にダウンロード
053set appFileManager to refMe's NSFileManager's defaultManager()
054set ocidTempDirURL to appFileManager's temporaryDirectory()
055set ocidUUID to refMe's NSUUID's alloc()'s init()
056set ocidUUIDString to ocidUUID's UUIDString
057set ocidSaveDirPathURL to ocidTempDirURL's URLByAppendingPathComponent:(ocidUUIDString) isDirectory:(true)
058#フォルダを作っておく
059set ocidAttrDict to refMe's NSMutableDictionary's alloc()'s initWithCapacity:0
060ocidAttrDict's setValue:(511) forKey:(refMe's NSFilePosixPermissions)
061set listDone to appFileManager's createDirectoryAtURL:(ocidSaveDirPathURL) withIntermediateDirectories:(true) attributes:(ocidAttrDict) |error| :(reference)
062if (item 1 of listDone) is true then
063  log "createDirectoryAtURL 正常処理"
064else if (item 2 of listDone) ≠ (missing value) then
065  log (item 2 of listDone)'s code() as text
066  log (item 2 of listDone)'s localizedDescription() as text
067  return "createDirectoryAtURL エラーしました"
068end if
069#保存パス
070set strSaveFileName to "AcrobatSCAManifest.pkg" as text
071set ocidSaveFilePathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:(strSaveFileName) isDirectory:(false)
072
073##############################
074#NSDATAでダウンロード
075set ocidOption to (refMe's NSDataReadingMappedIfSafe)
076set listResponse to refMe's NSData's alloc()'s initWithContentsOfURL:(ocidURL) options:(ocidOption) |error| :(reference)
077if (item 2 of listResponse) = (missing value) then
078  log "正常処理"
079  set ocidReadData to (item 1 of listResponse)
080else if (item 2 of listResponse) ≠ (missing value) then
081  log (item 2 of listResponse)'s code() as text
082  log (item 2 of listResponse)'s localizedDescription() as text
083  return "エラーしました"
084end if
085
086##############################
087#保存
088set ocidOption to (refMe's NSDataWritingAtomic)
089set listDone to ocidReadData's writeToURL:(ocidSaveFilePathURL) options:(ocidOption) |error| :(reference)
090if (item 1 of listDone) is true then
091  log "正常処理"
092else if (item 2 of listDone) ≠ (missing value) then
093  log (item 2 of listDone)'s code() as text
094  log (item 2 of listDone)'s localizedDescription() as text
095  return "エラーしました"
096end if
097##############################
098#PKG解凍
099set strPkgPath to (ocidSaveFilePathURL's |path|()) as text
100#解凍先
101set ocidDistDirPathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:("UnArchived") isDirectory:(true)
102set strDistPath to (ocidDistDirPathURL's |path|()) as text
103#コマンド実行
104set strComandText to ("/usr/sbin/pkgutil  --expand  \"" & strPkgPath & "\" \"" & strDistPath & "\"") as text
105log strComandText
106try
107  do shell script strComandText
108on error
109  return "pkgutilでエラーになりました"
110end try
111
112##############################
113#マニフェスト読み込み
114#XMLパス
115set ocidXmlFilePathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:("UnArchived/ASSET/AcrobatSCAManifest.xml") isDirectory:(true)
116##############################
117#NSDATAに読み込み
118set ocidOption to (refMe's NSDataReadingMappedIfSafe)
119set listResponse to refMe's NSData's alloc()'s initWithContentsOfURL:(ocidXmlFilePathURL) options:(ocidOption) |error| :(reference)
120if (item 2 of listResponse) = (missing value) then
121  log "initWithContentsOfURL 正常処理"
122  set ocidReadData to (item 1 of listResponse)
123else if (item 2 of listResponse) ≠ (missing value) then
124  log (item 2 of listResponse)'s code() as text
125  log (item 2 of listResponse)'s localizedDescription() as text
126  return "initWithContentsOfURL エラーしました"
127end if
128##############################
129#XMLに読み込む
130set ocidOption to (refMe's NSXMLNodePreserveAll) + (refMe's NSXMLDocumentTidyHTML)
131set listResponse to refMe's NSXMLDocument's alloc()'s initWithData:(ocidReadData) options:(ocidOption) |error| :(reference)
132if (item 2 of listResponse) = (missing value) then
133  log "initWithData 正常処理"
134  set ocidXMLDoc to (item 1 of listResponse)
135else if (item 2 of listResponse) ≠ (missing value) then
136  log (item 2 of listResponse)'s code() as text
137  log (item 2 of listResponse)'s localizedDescription() as text
138  log "initWithData エラー 警告がありました"
139  set ocidXMLDoc to (item 1 of listResponse)
140end if
141##############################
142#出力用テキスト
143set ocidOutPutstring to refMe's NSMutableString's alloc()'s initWithCapacity:(0)
144ocidOutPutstring's appendString:("SCA版 Acrobat Classicの最新パッチURL\n\n")
145
146set strSetInfoStr to ("Acrobat Classic アップデート\nマニフェストにはAcroRdrとリーダ版\ndld_Patch_Mini_Cumulativeがあるがファイルは実在しない\n差分のIncrアップデータはXML上でコメントアウトされている\nPenultimateが付くのはひとつ前のバージョン\n") as text
147
148ocidOutPutstring's appendString:(strSetInfoStr)
149ocidOutPutstring's appendString:("\n")
150#最新バージョン
151ocidOutPutstring's appendString:("最新バージョン: ")
152ocidOutPutstring's appendString:(ocidVtext)
153ocidOutPutstring's appendString:("\n")
154
155##############################
156#初期バージョン
157(ocidOutPutstring's appendString:("\n"))
158(ocidOutPutstring's appendString:("\n"))
159(ocidOutPutstring's appendString:("初期バージョン"))
160(ocidOutPutstring's appendString:("\n"))
161(ocidOutPutstring's appendString:("https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatClassic/2400130123/AcrobatSCA_Classic_Web_WWMUI.dmg"))
162(ocidOutPutstring's appendString:("\n"))
163(ocidOutPutstring's appendString:("\n"))
164
165##############################
166#XML解析
167#ROOT
168set ocidRootElement to ocidXMLDoc's rootElement()
169set ocidActionItemsArray to ocidRootElement's elementsForName:("DownloadActionItems")
170set ocidActionItems to ocidActionItemsArray's firstObject()
171set ocidItemArray to (ocidActionItems's elementsForName:("dItem"))
172repeat with itemArray in ocidItemArray
173  (ocidOutPutstring's appendString:("----+----1----+----2----+-----3----+----4----+----5----+----6----+----7"))
174  (ocidOutPutstring's appendString:("\n"))
175  set ocidID to (itemArray's attributeForName:("id"))'s stringValue()
176  (ocidOutPutstring's appendString:(ocidID))
177  (ocidOutPutstring's appendString:("\n"))
178  #URL
179  set ocidHost to (itemArray's attributeForName:("httpURLBase"))'s stringValue()
180  set ocidPath to (itemArray's attributeForName:("URL"))'s stringValue()
181  set ocidLastPath to (itemArray's attributeForName:("fileName"))'s stringValue()
182  set ocidPkgURL to (refMe's NSURL's alloc()'s initWithString:(ocidHost))
183  set ocidPkgURL to (ocidPkgURL's URLByAppendingPathComponent:(ocidPath))
184  set ocidPkgURL to (ocidPkgURL's URLByAppendingPathComponent:(ocidLastPath))
185  set ocidSetURL to ocidPkgURL's absoluteString()
186  (ocidOutPutstring's appendString:(ocidSetURL))
187  (ocidOutPutstring's appendString:("\n"))
188  # log (itemArray's attributeForName:("signingEntity"))'s stringValue as text
189  # log (itemArray's attributeForName:("hashValue"))'s stringValue as text
190  #PKGのファイルサイズ
191  set ocidFileSizeStr to (itemArray's attributeForName:("size"))'s stringValue()
192  set ocidFileSizeDec to (refMe's NSDecimalNumber's alloc()'s initWithString:(ocidFileSizeStr))
193  set ocidThousandDec to (refMe's NSDecimalNumber's alloc()'s initWithString:("1000000"))
194  set ocidMBDec to (ocidFileSizeDec's decimalNumberByDividingBy:(ocidThousandDec))
195  set ocidFormatter to refMe's NSNumberFormatter's alloc()'s init()
196  (ocidFormatter's setRoundingMode:(refMe's NSNumberFormatterRoundFloor))
197  (ocidFormatter's setNumberStyle:(refMe's NSNumberFormatterDecimalStyle))
198  (ocidFormatter's setMaximumFractionDigits:(2))
199  set ocidMBstr to (ocidFormatter's stringFromNumber:(ocidMBDec))
200  (ocidOutPutstring's appendString:(ocidMBstr))
201  (ocidOutPutstring's appendString:(" MB"))
202  (ocidOutPutstring's appendString:("\n"))
203  
204end repeat
205
206
207##############################
208#テキスト保存
209set ocidSaveTextFilePathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:("AcrobatSCAManifest.txt") isDirectory:(false)
210set listDone to ocidOutPutstring's writeToURL:(ocidSaveTextFilePathURL) atomically:(true) encoding:(refMe's NSUTF8StringEncoding) |error| :(reference)
211if (item 1 of listDone) is true then
212  log "writeToURL 正常処理"
213else if (item 2 of listDone) ≠ (missing value) then
214  log (item 2 of listDone)'s code() as text
215  log (item 2 of listDone)'s localizedDescription() as text
216  return "writeToURL エラーしました"
217end if
218
219##############################
220#開く
221set appSharedWorkspace to refMe's NSWorkspace's sharedWorkspace()
222set boolDone to appSharedWorkspace's openURL:(ocidSaveTextFilePathURL)
223
224if (boolDone) is true then
225  return "正常処理"
226else if (boolDone) is false then
227  return "エラーしました"
228end if
229
AppleScriptで生成しました

|

[AcrobatSCA Classic]最新アップデーターのURLを取得する


AppleScript サンプルコード

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

AppleScript サンプルソース(参考)
行番号ソース
001#! /usr/bin/env osascript
002----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
003(*
004シングルクライアントアプリケーションSCA版のAcrobatClassicの
005最新アップデーターのURLを取得します
006com.cocolog-nifty.quicktimer.icefloe *)
007----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
008use AppleScript version "2.8"
009use framework "Foundation"
010use framework "AppKit"
011use scripting additions
012
013property refMe : a reference to current application
014
015property refNSNotFound : a reference to 9.22337203685477E+18 + 5807
016
017##############################
018#バージョンURL
019set strVtextURL to ("https://armmf.adobe.com/arm-manifests/mac/Classic/acrobatSCA/current_version.txt") as text
020set ocidVtextURLString to refMe's NSString's stringWithString:(strVtextURL)
021set ocidVtextURL to refMe's NSURL's alloc()'s initWithString:(ocidVtextURLString)
022##############################
023#NSDATAでダウンロード
024set ocidOption to (refMe's NSDataReadingMappedIfSafe)
025set listResponse to refMe's NSData's alloc()'s initWithContentsOfURL:(ocidVtextURL) options:(ocidOption) |error| :(reference)
026if (item 2 of listResponse) = (missing value) then
027  log "正常処理"
028  set ocidReadVtextData to (item 1 of listResponse)
029else if (item 2 of listResponse) ≠ (missing value) then
030  log (item 2 of listResponse)'s code() as text
031  log (item 2 of listResponse)'s localizedDescription() as text
032  return "エラーしました"
033end if
034##############################
035#STRINGに
036set ocidVtext to refMe's NSString's alloc()'s initWithData:(ocidReadVtextData) encoding:(refMe's NSUTF8StringEncoding)
037
038
039##############################
040#ダウンロードするURL
041set ocidURLComponents to refMe's NSURLComponents's alloc()'s init()
042ocidURLComponents's setScheme:("https")
043ocidURLComponents's setHost:("armmf.adobe.com")
044ocidURLComponents's setPath:("/arm-manifests/mac/Classic/acrobatSCA/AcrobatSCAManifest.arm")
045set ocidURLStrings to ocidURLComponents's |URL|'s absoluteString()
046set ocidURL to refMe's NSURL's alloc()'s initWithString:(ocidURLStrings)
047log ocidURL's absoluteString() as text
048
049
050
051##############################
052#起動時に削除される項目にダウンロード
053set appFileManager to refMe's NSFileManager's defaultManager()
054set ocidTempDirURL to appFileManager's temporaryDirectory()
055set ocidUUID to refMe's NSUUID's alloc()'s init()
056set ocidUUIDString to ocidUUID's UUIDString
057set ocidSaveDirPathURL to ocidTempDirURL's URLByAppendingPathComponent:(ocidUUIDString) isDirectory:(true)
058#フォルダを作っておく
059set ocidAttrDict to refMe's NSMutableDictionary's alloc()'s initWithCapacity:0
060ocidAttrDict's setValue:(511) forKey:(refMe's NSFilePosixPermissions)
061set listDone to appFileManager's createDirectoryAtURL:(ocidSaveDirPathURL) withIntermediateDirectories:(true) attributes:(ocidAttrDict) |error| :(reference)
062if (item 1 of listDone) is true then
063  log "createDirectoryAtURL 正常処理"
064else if (item 2 of listDone) ≠ (missing value) then
065  log (item 2 of listDone)'s code() as text
066  log (item 2 of listDone)'s localizedDescription() as text
067  return "createDirectoryAtURL エラーしました"
068end if
069#保存パス
070set strSaveFileName to "AcrobatSCAManifest.pkg" as text
071set ocidSaveFilePathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:(strSaveFileName) isDirectory:(false)
072
073##############################
074#NSDATAでダウンロード
075set ocidOption to (refMe's NSDataReadingMappedIfSafe)
076set listResponse to refMe's NSData's alloc()'s initWithContentsOfURL:(ocidURL) options:(ocidOption) |error| :(reference)
077if (item 2 of listResponse) = (missing value) then
078  log "正常処理"
079  set ocidReadData to (item 1 of listResponse)
080else if (item 2 of listResponse) ≠ (missing value) then
081  log (item 2 of listResponse)'s code() as text
082  log (item 2 of listResponse)'s localizedDescription() as text
083  return "エラーしました"
084end if
085
086##############################
087#保存
088set ocidOption to (refMe's NSDataWritingAtomic)
089set listDone to ocidReadData's writeToURL:(ocidSaveFilePathURL) options:(ocidOption) |error| :(reference)
090if (item 1 of listDone) is true then
091  log "正常処理"
092else if (item 2 of listDone) ≠ (missing value) then
093  log (item 2 of listDone)'s code() as text
094  log (item 2 of listDone)'s localizedDescription() as text
095  return "エラーしました"
096end if
097##############################
098#PKG解凍
099set strPkgPath to (ocidSaveFilePathURL's |path|()) as text
100#解凍先
101set ocidDistDirPathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:("UnArchived") isDirectory:(true)
102set strDistPath to (ocidDistDirPathURL's |path|()) as text
103#コマンド実行
104set strComandText to ("/usr/sbin/pkgutil  --expand  \"" & strPkgPath & "\" \"" & strDistPath & "\"") as text
105log strComandText
106try
107  do shell script strComandText
108on error
109  return "pkgutilでエラーになりました"
110end try
111
112##############################
113#マニフェスト読み込み
114#XMLパス
115set ocidXmlFilePathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:("UnArchived/ASSET/AcrobatSCAManifest.xml") isDirectory:(true)
116##############################
117#NSDATAに読み込み
118set ocidOption to (refMe's NSDataReadingMappedIfSafe)
119set listResponse to refMe's NSData's alloc()'s initWithContentsOfURL:(ocidXmlFilePathURL) options:(ocidOption) |error| :(reference)
120if (item 2 of listResponse) = (missing value) then
121  log "initWithContentsOfURL 正常処理"
122  set ocidReadData to (item 1 of listResponse)
123else if (item 2 of listResponse) ≠ (missing value) then
124  log (item 2 of listResponse)'s code() as text
125  log (item 2 of listResponse)'s localizedDescription() as text
126  return "initWithContentsOfURL エラーしました"
127end if
128##############################
129#XMLに読み込む
130set ocidOption to (refMe's NSXMLNodePreserveAll) + (refMe's NSXMLDocumentTidyHTML)
131set listResponse to refMe's NSXMLDocument's alloc()'s initWithData:(ocidReadData) options:(ocidOption) |error| :(reference)
132if (item 2 of listResponse) = (missing value) then
133  log "initWithData 正常処理"
134  set ocidXMLDoc to (item 1 of listResponse)
135else if (item 2 of listResponse) ≠ (missing value) then
136  log (item 2 of listResponse)'s code() as text
137  log (item 2 of listResponse)'s localizedDescription() as text
138  log "initWithData エラー 警告がありました"
139  set ocidXMLDoc to (item 1 of listResponse)
140end if
141##############################
142#出力用テキスト
143set ocidOutPutstring to refMe's NSMutableString's alloc()'s initWithCapacity:(0)
144ocidOutPutstring's appendString:("SCA版 Acrobat Classicの最新パッチURL\n\n")
145
146set strSetInfoStr to ("Acrobat Classic アップデート\nマニフェストにはAcroRdrとリーダ版\ndld_Patch_Mini_Cumulativeがあるがファイルは実在しない\n差分のIncrアップデータはXML上でコメントアウトされている\nPenultimateが付くのはひとつ前のバージョン\n") as text
147
148ocidOutPutstring's appendString:(strSetInfoStr)
149ocidOutPutstring's appendString:("\n")
150#最新バージョン
151ocidOutPutstring's appendString:("最新バージョン: ")
152ocidOutPutstring's appendString:(ocidVtext)
153ocidOutPutstring's appendString:("\n")
154
155##############################
156#初期バージョン
157(ocidOutPutstring's appendString:("\n"))
158(ocidOutPutstring's appendString:("\n"))
159(ocidOutPutstring's appendString:("初期バージョン"))
160(ocidOutPutstring's appendString:("\n"))
161(ocidOutPutstring's appendString:("https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatClassic/2400130123/AcrobatSCA_Classic_Web_WWMUI.dmg"))
162(ocidOutPutstring's appendString:("\n"))
163(ocidOutPutstring's appendString:("\n"))
164
165##############################
166#XML解析
167#ROOT
168set ocidRootElement to ocidXMLDoc's rootElement()
169set ocidActionItemsArray to ocidRootElement's elementsForName:("DownloadActionItems")
170set ocidActionItems to ocidActionItemsArray's firstObject()
171set ocidItemArray to (ocidActionItems's elementsForName:("dItem"))
172repeat with itemArray in ocidItemArray
173  (ocidOutPutstring's appendString:("----+----1----+----2----+-----3----+----4----+----5----+----6----+----7"))
174  (ocidOutPutstring's appendString:("\n"))
175  set ocidID to (itemArray's attributeForName:("id"))'s stringValue()
176  (ocidOutPutstring's appendString:(ocidID))
177  (ocidOutPutstring's appendString:("\n"))
178  #URL
179  set ocidHost to (itemArray's attributeForName:("httpURLBase"))'s stringValue()
180  set ocidPath to (itemArray's attributeForName:("URL"))'s stringValue()
181  set ocidLastPath to (itemArray's attributeForName:("fileName"))'s stringValue()
182  set ocidPkgURL to (refMe's NSURL's alloc()'s initWithString:(ocidHost))
183  set ocidPkgURL to (ocidPkgURL's URLByAppendingPathComponent:(ocidPath))
184  set ocidPkgURL to (ocidPkgURL's URLByAppendingPathComponent:(ocidLastPath))
185  set ocidSetURL to ocidPkgURL's absoluteString()
186  (ocidOutPutstring's appendString:(ocidSetURL))
187  (ocidOutPutstring's appendString:("\n"))
188  # log (itemArray's attributeForName:("signingEntity"))'s stringValue as text
189  # log (itemArray's attributeForName:("hashValue"))'s stringValue as text
190  #PKGのファイルサイズ
191  set ocidFileSizeStr to (itemArray's attributeForName:("size"))'s stringValue()
192  set ocidFileSizeDec to (refMe's NSDecimalNumber's alloc()'s initWithString:(ocidFileSizeStr))
193  set ocidThousandDec to (refMe's NSDecimalNumber's alloc()'s initWithString:("1000000"))
194  set ocidMBDec to (ocidFileSizeDec's decimalNumberByDividingBy:(ocidThousandDec))
195  set ocidFormatter to refMe's NSNumberFormatter's alloc()'s init()
196  (ocidFormatter's setRoundingMode:(refMe's NSNumberFormatterRoundFloor))
197  (ocidFormatter's setNumberStyle:(refMe's NSNumberFormatterDecimalStyle))
198  (ocidFormatter's setMaximumFractionDigits:(2))
199  set ocidMBstr to (ocidFormatter's stringFromNumber:(ocidMBDec))
200  (ocidOutPutstring's appendString:(ocidMBstr))
201  (ocidOutPutstring's appendString:(" MB"))
202  (ocidOutPutstring's appendString:("\n"))
203  
204end repeat
205
206
207##############################
208#テキスト保存
209set ocidSaveTextFilePathURL to ocidSaveDirPathURL's URLByAppendingPathComponent:("AcrobatSCAManifest.txt") isDirectory:(false)
210set listDone to ocidOutPutstring's writeToURL:(ocidSaveTextFilePathURL) atomically:(true) encoding:(refMe's NSUTF8StringEncoding) |error| :(reference)
211if (item 1 of listDone) is true then
212  log "writeToURL 正常処理"
213else if (item 2 of listDone) ≠ (missing value) then
214  log (item 2 of listDone)'s code() as text
215  log (item 2 of listDone)'s localizedDescription() as text
216  return "writeToURL エラーしました"
217end if
218
219##############################
220#開く
221set appSharedWorkspace to refMe's NSWorkspace's sharedWorkspace()
222set boolDone to appSharedWorkspace's openURL:(ocidSaveTextFilePathURL)
223
224if (boolDone) is true then
225  return "正常処理"
226else if (boolDone) is false then
227  return "エラーしました"
228end if
229
AppleScriptで生成しました

|

[Classic] クラシックトラック Reader 2017

Splash_x2_20241011000001
About_x2_20241011000001
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130078/AcroRdr2017_1701130078_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130079/AcroRdr2017_1701130079_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130080/AcroRdr2017_1701130080_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130096/AcroRdr2017_1701130096_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130099/AcroRdr2017_1701130099_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130102/AcroRdr2017_1701130102_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130105/AcroRdr2017_1701130105_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130110/AcroRdr2017_1701130110_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130113/AcroRdr2017_1701130113_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130120/AcroRdr2017_1701130120_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130138/AcroRdr2017_1701130138_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130142/AcroRdr2017_1701130142_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130144/AcroRdr2017_1701130144_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130148/AcroRdr2017_1701130148_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130150/AcroRdr2017_1701130150_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130152/AcroRdr2017_1701130152_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130156/AcroRdr2017_1701130156_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130158/AcroRdr2017_1701130158_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130166/AcroRdr2017_1701130166_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130171/AcroRdr2017_1701130171_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130175/AcroRdr2017_1701130175_MUI.dmg ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130180/AcroRdr2017_1701130180_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1700830051/AcroRdr2017Upd1700830051_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130059/AcroRdr2017Upd1701130059_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130065/AcroRdr2017Upd1701130065_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130066/AcroRdr2017Upd1701130066_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130068/AcroRdr2017Upd1701130068_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130070/AcroRdr2017Upd1701130070_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130078/AcroRdr2017Upd1701130078_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130079/AcroRdr2017Upd1701130079_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130080/AcroRdr2017Upd1701130080_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130096/AcroRdr2017Upd1701130096_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130099/AcroRdr2017Upd1701130099_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130102/AcroRdr2017Upd1701130102_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130105/AcroRdr2017Upd1701130105_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130110/AcroRdr2017Upd1701130110_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130113/AcroRdr2017Upd1701130113_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130120/AcroRdr2017Upd1701130120_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130138/AcroRdr2017Upd1701130138_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130142/AcroRdr2017Upd1701130142_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130144/AcroRdr2017Upd1701130144_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130148/AcroRdr2017Upd1701130148_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130150/AcroRdr2017Upd1701130150_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130152/AcroRdr2017Upd1701130152_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130156/AcroRdr2017Upd1701130156_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130158/AcroRdr2017Upd1701130158_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130166/AcroRdr2017Upd1701130166_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130171/AcroRdr2017Upd1701130171_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130175/AcroRdr2017Upd1701130175_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130180/AcroRdr2017Upd1701130180_MUI.dmg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1700830051/AcroRdr2017Upd1700830051_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130059/AcroRdr2017Upd1701130059_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130065/AcroRdr2017Upd1701130065_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130066/AcroRdr2017Upd1701130066_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130068/AcroRdr2017Upd1701130068_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130070/AcroRdr2017Upd1701130070_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130078/AcroRdr2017Upd1701130078_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130079/AcroRdr2017Upd1701130079_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130080/AcroRdr2017Upd1701130080_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130096/AcroRdr2017Upd1701130096_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130099/AcroRdr2017Upd1701130099_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130102/AcroRdr2017Upd1701130102_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130105/AcroRdr2017Upd1701130105_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130110/AcroRdr2017Upd1701130110_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130113/AcroRdr2017Upd1701130113_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130120/AcroRdr2017Upd1701130120_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130138/AcroRdr2017Upd1701130138_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130142/AcroRdr2017Upd1701130142_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130144/AcroRdr2017Upd1701130144_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130148/AcroRdr2017Upd1701130148_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130150/AcroRdr2017Upd1701130150_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130152/AcroRdr2017Upd1701130152_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130156/AcroRdr2017Upd1701130156_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130158/AcroRdr2017Upd1701130158_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130166/AcroRdr2017Upd1701130166_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130171/AcroRdr2017Upd1701130171_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130175/AcroRdr2017Upd1701130175_MUI.pkg https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130180/AcroRdr2017Upd1701130180_MUI.pkg

|

[Classic] クラシックトラック Reader 2017

Splash_x2_20241011000001
About_x2_20241011000001



FTPダウンロード フルインストーラー
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130078/AcroRdr2017_1701130078_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130079/AcroRdr2017_1701130079_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130080/AcroRdr2017_1701130080_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130096/AcroRdr2017_1701130096_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130099/AcroRdr2017_1701130099_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130102/AcroRdr2017_1701130102_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130105/AcroRdr2017_1701130105_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130110/AcroRdr2017_1701130110_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130113/AcroRdr2017_1701130113_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130120/AcroRdr2017_1701130120_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130138/AcroRdr2017_1701130138_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130142/AcroRdr2017_1701130142_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130144/AcroRdr2017_1701130144_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130148/AcroRdr2017_1701130148_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130150/AcroRdr2017_1701130150_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130152/AcroRdr2017_1701130152_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130156/AcroRdr2017_1701130156_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130158/AcroRdr2017_1701130158_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130166/AcroRdr2017_1701130166_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130171/AcroRdr2017_1701130171_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130175/AcroRdr2017_1701130175_MUI.dmg
ftp://anonymous:guest@ftp.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130180/AcroRdr2017_1701130180_MUI.dmg



DMG形式 アップデータ
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1700830051/AcroRdr2017Upd1700830051_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130059/AcroRdr2017Upd1701130059_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130065/AcroRdr2017Upd1701130065_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130066/AcroRdr2017Upd1701130066_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130068/AcroRdr2017Upd1701130068_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130070/AcroRdr2017Upd1701130070_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130078/AcroRdr2017Upd1701130078_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130079/AcroRdr2017Upd1701130079_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130080/AcroRdr2017Upd1701130080_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130096/AcroRdr2017Upd1701130096_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130099/AcroRdr2017Upd1701130099_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130102/AcroRdr2017Upd1701130102_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130105/AcroRdr2017Upd1701130105_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130110/AcroRdr2017Upd1701130110_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130113/AcroRdr2017Upd1701130113_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130120/AcroRdr2017Upd1701130120_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130138/AcroRdr2017Upd1701130138_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130142/AcroRdr2017Upd1701130142_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130144/AcroRdr2017Upd1701130144_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130148/AcroRdr2017Upd1701130148_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130150/AcroRdr2017Upd1701130150_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130152/AcroRdr2017Upd1701130152_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130156/AcroRdr2017Upd1701130156_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130158/AcroRdr2017Upd1701130158_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130166/AcroRdr2017Upd1701130166_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130171/AcroRdr2017Upd1701130171_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130175/AcroRdr2017Upd1701130175_MUI.dmg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130180/AcroRdr2017Upd1701130180_MUI.dmg


PKG形式 アップデータ
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1700830051/AcroRdr2017Upd1700830051_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130059/AcroRdr2017Upd1701130059_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130065/AcroRdr2017Upd1701130065_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130066/AcroRdr2017Upd1701130066_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130068/AcroRdr2017Upd1701130068_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130070/AcroRdr2017Upd1701130070_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130078/AcroRdr2017Upd1701130078_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130079/AcroRdr2017Upd1701130079_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130080/AcroRdr2017Upd1701130080_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130096/AcroRdr2017Upd1701130096_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130099/AcroRdr2017Upd1701130099_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130102/AcroRdr2017Upd1701130102_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130105/AcroRdr2017Upd1701130105_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130110/AcroRdr2017Upd1701130110_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130113/AcroRdr2017Upd1701130113_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130120/AcroRdr2017Upd1701130120_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130138/AcroRdr2017Upd1701130138_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130142/AcroRdr2017Upd1701130142_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130144/AcroRdr2017Upd1701130144_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130148/AcroRdr2017Upd1701130148_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130150/AcroRdr2017Upd1701130150_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130152/AcroRdr2017Upd1701130152_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130156/AcroRdr2017Upd1701130156_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130158/AcroRdr2017Upd1701130158_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130166/AcroRdr2017Upd1701130166_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130171/AcroRdr2017Upd1701130171_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130175/AcroRdr2017Upd1701130175_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/reader/mac/Acrobat2017/1701130180/AcroRdr2017Upd1701130180_MUI.pkg

|

その他のカテゴリー

Accessibility Acrobat Acrobat 2020 Acrobat 2024 Acrobat AddOn Acrobat Annotation Acrobat AppleScript Acrobat ARMDC Acrobat AV2 Acrobat BookMark Acrobat Classic Acrobat DC Acrobat Dialog Acrobat Distiller Acrobat Form Acrobat GentechAI Acrobat JS Acrobat JS Word Search Acrobat Maintenance Acrobat Manifest Acrobat Menu Acrobat Merge Acrobat Open Acrobat PDFPage Acrobat Plugin Acrobat Preferences Acrobat Preflight Acrobat Print Acrobat Python Acrobat Reader Acrobat Reader Localized Acrobat Reference Acrobat Registered Products Acrobat SCA Acrobat SCA Updater Acrobat Sequ Acrobat Sign Acrobat Stamps Acrobat URL List Mac Acrobat URL List Windows Acrobat Watermark Acrobat Windows Acrobat Windows Reader Admin Admin Account Admin Apachectl Admin ConfigCode Admin configCode Admin Device Management Admin LaunchServices Admin Locationd Admin loginitem Admin Maintenance Admin Mobileconfig Admin NetWork Admin Permission Admin Pkg Admin Power Management Admin Printer Admin Printer Basic Admin Printer Custompapers Admin SetUp Admin SMB Admin softwareupdate Admin Support Admin System Information Admin TCC Admin Tools Admin Umask Admin Users Admin Volumes Admin XProtect Adobe Adobe AUSST Adobe Bridge Adobe Documents Adobe FDKO Adobe Fonts Adobe Reference Adobe RemoteUpdateManager Adobe Sap Code AppKit Apple AppleScript AppleScript Duplicate AppleScript entire contents AppleScript List AppleScript ObjC AppleScript Osax AppleScript PDF AppleScript Pictures AppleScript record AppleScript Video Applications AppStore Archive Archive Keka Attributes Automator BackUp Barcode Barcode Decode Barcode QR Bash Basic Basic Path Bluetooth BOX Browser Calendar CD/DVD Choose Chrome Chromedriver CIImage CityCode CloudStorage Color Color NSColor Color NSColorList com.apple.LaunchServices.OpenWith Console Contacts CotEditor CURL current application Date&Time delimiters Desktop Desktop Position Device Diff Disk do shell script Dock Dock Launchpad DropBox Droplet eMail Encode % Encode Decode Encode HTML Entity Encode UTF8 Error EXIFData exiftool ffmpeg File File Name Finder Finder Window Firefox Folder FolderAction Font List FontCollections Fonts Fonts Asset_Font Fonts ATS Fonts Emoji Fonts Maintenance Fonts Morisawa Fonts Python Fonts Variable Foxit GIF github Guide HTML Icon Icon Assets.car Illustrator Image Events ImageOptim Input Dictionary iPhone iWork Javascript Jedit Ω Json Label Language Link locationd lsappinfo m3u8 Mail Map Math Media Media AVAsset Media AVconvert Media AVFoundation Media AVURLAsset Media Movie Media Music Memo Messages Microsoft Microsoft Edge Microsoft Excel Microsoft Fonts Microsoft Office Microsoft Office Link Microsoft OneDrive Microsoft Teams Mouse Music Node Notes NSArray NSArray Sort NSAttributedString NSBezierPath NSBitmapImageRep NSBundle NSCFBoolean NSCharacterSet NSData NSDecimalNumber NSDictionary NSError NSEvent NSFileAttributes NSFileManager NSFileManager enumeratorAtURL NSFont NSFontManager NSGraphicsContext NSGraphicsContext Crop NSImage NSIndex NSKeyedArchiver NSKeyedUnarchiver NSLocale NSMetadataItem NSMutableArray NSMutableDictionary NSMutableString NSNotFound NSNumber NSOpenPanel NSPasteboard NSpoint NSPredicate NSRange NSRect NSRegularExpression NSRunningApplication NSScreen NSSet NSSize NSString NSString stringByApplyingTransform NSStringCompareOptions NSTask NSTimeZone NSUbiquitous NSURL NSURL File NSURLBookmark NSURLComponents NSURLResourceKey NSURLSession NSUserDefaults NSUUID NSView NSWorkspace Numbers OAuth PDF PDF Image2PDF PDF MakePDF PDF nUP PDF Pymupdf PDF Pypdf PDFContext PDFDisplayBox PDFImageRep PDFKit PDFKit Annotation PDFKit AnnotationWidget PDFKit DocumentPermissions PDFKit OCR PDFKit Outline PDFKit Start PDFPage PDFPage Rotation PDFView perl Photoshop PlistBuddy pluginkit plutil postalcode PostScript PowerShell prefPane Preview Python Python eyed3 Python pip QuickLook QuickTime ReadMe Regular Expression Reminders ReName Repeat RTF Safari SaveFile ScreenCapture ScreenSaver Script Editor Script Menu SF Symbols character id SF Symbols Entity Shortcuts Shortcuts Events sips Skype Slack Sound Spotlight sqlite StandardAdditions StationSearch Subtitles LRC Subtitles SRT Subtitles VTT Swift swiftDialog System Events System Settings 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 VMware Fusion Wacom Weather webarchive webp Wifi Windows XML XML EPUB XML HTML XML LSSharedFileList XML LSSharedFileList sfl2 XML LSSharedFileList sfl3 XML objectsForXQuery XML OPML XML Plist XML Plist System Events XML RSS XML savedSearch XML SVG XML TTML XML webloc XML xmllint XML XMP YouTube Zero Padding zoom