ReadMe

記事の内容によっては、執筆時の内容が現在の事実と異なったりする場合があります。
内容の真偽は、ご自分でご確認ください。
また
プログラム類につきましても、意図する動作をするのか?は
ご自身でご確認の上、ご自身の責任において実行してください。

過去の記事に誤りがあっても
比較的その記事を修正しないで、修正版のみ掲載する傾向がありあます
留意ください

お問合せ等ありましたら
本記事のコメント欄にコメントを残してください。
返答のいる内容については、メールアドレス等の連絡先情報をお忘れなく。



投げ銭歓迎♪金額はお気持ちで♪

本BLOGの記事は
個別ページにおいて
別途指定していない記事やコンテンツは
CC0 1.0 全世界 (CC0 1.0)
パブリック・ドメインを選択しています。
(外部ライブラリやマテリアル等、個別のライセンス指定がある物もあります。留意ください)
https://creativecommons.org/publicdomain/zero/1.0/deed.ja
引用流用するときに記載してくれたら嬉しいですが、CC0 1.0を選択していますので必要はありません。




| | コメント (0) | トラックバック (0)

[networksetup]ネットワークサービスのOFF-ON


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

setnetworkserviceenabled.scpt
ソース
001#!/usr/bin/env osascript
002----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
003(*
004ちょっと古いOS
005たぶんmacOS10.8とかまでの
006iMac用としては動作すると思われる
007
008networksetupコマンドを使って
009イーサネットポートをOFF-ONする
010
011
012com.cocolog-nifty.quicktimer.icefloe *)
013----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
014use AppleScript version "2.8"
015use scripting additions
016
017#【設定項目】ユーザーID
018set strUserName to ("ユーザーのショートID") as text
019#【設定項目】ユーザーパスワード
020set strUserPW to ("ユーザーのパスワード") as text
021#内容イーサーネット
022set strNetWorkServiceName to ("Ethernet") as text
023#WIFIの場合
024#   set strNetWorkServiceName to ("Wi-Fi") as text
025#iPhone USB USBの場合
026#set strNetWorkServiceName to ("iPhone USB USB") as text
027
028set strCmdText to ("/usr/bin/sudo /usr/sbin/networksetup -setnetworkserviceenabled \"" & strNetWorkServiceName & "\" off") as text
029do shell script strCmdText user name strUserName password strUserPW with administrator privileges
030
031delay 2
032
033set strCmdText to ("/usr/bin/sudo /usr/sbin/networksetup -setnetworkserviceenabled \"" & strNetWorkServiceName & "\" on") as text
034do shell script strCmdText user name strUserName password strUserPW with administrator privileges
AppleScriptで生成しました

| | コメント (0)

[nodesForXPath]HTMLソースから必要な値を取り出す(SlackチャンネルURL)

202507130906021_1085x354

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

SlackチャンネルURL.applescript
ソース
001#!/usr/bin/env osascript
002----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
003(*
004HTMLをテキスト形式でコピーして
005その内容から必要な情報を取得するサンプル
006
007
008com.cocolog-nifty.quicktimer.icefloe *)
009----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
010use AppleScript version "2.8"
011use framework "Foundation"
012use framework "AppKit"
013use framework "UniformTypeIdentifiers"
014use scripting additions
015
016property refMe : a reference to current application
017
018
019########################
020# クリップボードの中身取り出し
021set appPasteboard to refMe's NSPasteboard's generalPasteboard()
022set ocidPastBoardTypeArray to appPasteboard's types()
023#
024set boolContain to ocidPastBoardTypeArray's containsObject:("public.utf8-plain-text")
025if (boolContain as boolean) is true then
026   set ocidReadString to appPasteboard's stringForType:("public.utf8-plain-text")
027else
028   log "テキストなし"
029   return
030end if
031
032########################
033#XMLにする
034set ocidOption to (refMe's NSXMLNodePreserveAll) + (refMe's NSXMLDocumentTidyHTML)
035set listResponse to refMe's NSXMLDocument's alloc()'s initWithXMLString:(ocidReadString) options:(ocidOption) |error|:(reference)
036set ocidHTML to (first item of listResponse)
037
038
039########################
040#IDの取得
041set listResponse to (ocidHTML's nodesForXPath:"//div" |error|:(reference))
042set ocidDivNode to (first item of listResponse)'s firstObject()
043set ocidID to (ocidDivNode's attributeForName:("id"))'s stringValue()
044set strID to ocidID as text
045
046########################
047#チャンネル名の取得
048set listResponse to (ocidHTML's nodesForXPath:"//span" |error|:(reference))
049set ocidSpanArray to (first item of listResponse)
050repeat with itemSpan in ocidSpanArray
051   set ocidClass to (itemSpan's attributeForName:("class"))
052   if ocidClass ≠ (missing value) then
053      set ocidClassString to ocidClass's stringValue()
054      set boolContain to (ocidClassString's containsString:("c-channel_entity__name"))
055      if boolContain = true then
056         set ocidChannelName to itemSpan's stringValue()
057         set strChannelName to ocidChannelName as text
058      end if
059   end if
060end repeat
061
062########################
063#チャンネル名の役割
064set listResponse to (ocidHTML's nodesForXPath:"//span" |error|:(reference))
065set ocidSpanArray to (first item of listResponse)
066repeat with itemSpan in ocidSpanArray
067   set ocidClass to (itemSpan's attributeForName:("data-qa"))
068   if ocidClass ≠ (missing value) then
069      set ocidClassString to ocidClass's stringValue()
070      set boolContain to (ocidClassString's containsString:("medium_channel_entity_purpose"))
071      if boolContain = true then
072         set ocidPurpose to itemSpan's stringValue()
073         set strPurpose to ocidPurpose as text
074      end if
075   end if
076end repeat
077
078
079########################
080#戻し値整形
081set strBaseURL to ("https://app.slack.com/client/XXXXXXXXX/") as text
082set strURL to ("" & strBaseURL & strID & "") as text
083
084set strChannelName to ("#" & strChannelName & "") as text
085
086set strOutPut to ("" & strChannelName & "\t" & strPurpose & "\t" & strURL & "") as text
087
088########################
089#ダイアログ
090set aliasIconPath to (POSIX file "/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/BookmarkIcon.icns") as alias
091set recordResult to (display dialog "チャンネルIDURLです" with title "Slack ChannelID And URL" default answer strOutPut buttons {"クリップボードにコピー", "キャンセル", "OK"} default button "OK" cancel button "キャンセル" giving up after 20 with icon aliasIconPath without hidden answer)
092#分岐
093if "OK" is equal to (button returned of recordResult) then
094   set strReturnedText to (text returned of recordResult) as text
095else if "クリップボードにコピー" is equal to (button returned of recordResult) then
096   #クリップボードに戻す
097   set strReturnedText to (text returned of recordResult) as text
098   set ocidResponseText to (refMe's NSString's stringWithString:(strReturnedText))
099   set numDone to appPasteboard's clearContents()
100   log numDone
101   set boolDone to appPasteboard's setString:(ocidResponseText) forType:(refMe's NSPasteboardTypeString)
102   if boolDone is false then
103      return "クリップボードの格納に失敗"
104   end if
105else if (gave up of recordResult) is true then
106   return "時間切れです"
107else
108   return "キャンセル"
109end if
110
111
112return 0
AppleScriptで生成しました

コメント解説入れると
概ね以下のような内容になっている
サンプルソース(参考)
行番号ソース
001########################
002#チャンネル名の取得
003#nodesForXPathで『span』のクラスのみ収集する
004set listResponse to (ocidHTML's nodesForXPath:"//span"  |error| :(reference))
005#nodesForXPathの戻り値はerrorをreferenceにすると最初のアイテムノードのArrayになる
006set ocidSpanArray to (first item of listResponse)
007#収集したノードのArrayを順番に処理して
008repeat with itemSpan in ocidSpanArray
009  #classのアトリビュートの値を調べて
010  set ocidClass to (itemSpan's attributeForName:("class"))
011  #classがあるなら
012  if ocidClass  (missing value) then
013    #テキストとして値=この場合はSpanのclassのあチア
014    set ocidClassString to ocidClass's stringValue()
015    #取り出したclassのValueがc-channel_entity__nameなら
016    set boolContain to (ocidClassString's containsString:("c-channel_entity__name"))
017    if boolContain = true then
018      #その値がチャンネル名
019      set ocidChannelName to itemSpan's stringValue()
020      #出力に回すように格納しておく
021      set strChannelName to ocidChannelName as text
022    end if
023  end if
024end repeat
AppleScriptで生成しました

| | コメント (0)

Adobe Acrobat新規インストーラーリスト (20250712時点)

Adobe Acrobat新規インストーラーリスト (20250712時点)
一部のURLはリンク切れになっている場合があります
【M】macOS版
【W】Windows版
【S】サポートURL

【M】macOS版
【A】Adobe Acrobat 製品版
【B】Adobe Acrobat Reader 無料版
【C】Adobe Acrobat 2024(旧Classic) (Reader版無し)
【D】Acrobat 2020 (非DC) (2025年6月1日サポート終了)
【E】macOS 11以下用
【F】その他・フォントパック・スペル辞書

【A】Adobe Acrobat 製品版 macOS
【A−1】従来版 CC版 エンタープライズ版
常時最新のURL
https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/osx10/Acrobat_DC_Web_WWMUI.dmg
https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2500120566/AcrobatDC2500120566_MUI.pkg
Creative Cloud利用者向き
 
【A−2】SCA(single client app) Unified App版
常時最新のURL
https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/osx10/AcrobatSCA_DC_Web_WWMUI.dmg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2500120566/AcrobatSCADC2500120566_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2500120566/AcrobatSCADC2500120566_MUI.dmg
現時点では個人の方向き

【B】Adobe Acrobat Reader 無料版 macOS
【B-1】従来版 CC 版 エンタープライズ版
Adobe Acrobat DC Reader
https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2500120566/AcroRdrDC_2500120566_MUI.pkg
https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2500120566/AcroRdrDC_2500120566_MUI.dmg
【B-2】SCA(single client app) Unified App版
Adobe Acrobat SCADC Reader
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2500120566/AcroRdrSCADC2500120566_MUI.pkg
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2500120566/AcroRdrSCADC2500120566_MUI.dmg
※SCA版のReaderはAcrobatの機能制限版としてインストールされます

【C】Adobe Acrobat 2024(旧Classic) SCA(singleclient app) Unified App版のみ
【C】Adobe Acrobat 2024(旧Classic) 有償版 macOS (Reader版無し)
Adobe Acrobat 2024(旧Classic)macOS版
https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/osx10/AcrobatSCA_Classic_Web_WWMUI.dmg
AV2新UIのみ利用可 旧UIが利用出来ない

【D】Acrobat 2020 非DC版
【B】Adobe Acrobat 2020 有償版 macOS
Adobe Acrobat 2020 macOS版
https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/osx10/Acrobat_2020_Web_WWMUI.dmg
Adobe Acrobat 2017 macOS版
https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/osx10/Acrobat_2017_Web_WWMUI.dmg
Adobe Acrobat 2015 macOS版
https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/osx10/Acrobat_2015_Web_WWMUI.dmg
2025年6月1日サポート終了

【E】macOS 11以下用
macOS 11以下用の最終バージョン
Adobe Acrobat DC 2400420272 通常版
https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400420272/AcrobatDC2400420272_MUI.pkg
Adobe Acrobat DC 2400420272SCA(singleclientapp)UnifiedApp版
https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400420272/AcrobatSCADC2400420272_MUI.pkg
Adobe Acrobat Reader 2400420272 通常版
https://ardownload2.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400420272/AcroRdrDC_2400420272_MUI.pkg
Adobe Acrobat Reader 2400420272 SCA(single clientapp)UnifiedApp版
https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400420272/AcroRdrSCADC2400420272_MUI.pkg
最新版でもいける場合もあるがサポート外

【F】その他 macOS
Adobe Acrobat 製品版 過去のバージョン macOS用
Adobe Acrobat DC PRO 2015
http://trials.adobe.com/AdobeProducts/APRO/15/osx10/Acrobat_DC_Web_WWMUI.dmg
Adobe Acrobat DC PRO 2017
http://trials.adobe.com/AdobeProducts/APRO/17/osx10/Acrobat_DC_Web_WWMUI.dmg
Adobe Acrobat DC PRO 2018
http://trials.adobe.com/AdobeProducts/APRO/18/osx10/Acrobat_DC_Web_WWMUI.dmg
Adobe Acrobat DC PRO 2018
https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/osx10/Acrobat_DC_Web_WWMUI_1010.dmg
Adobe Acrobat DC PRO 2019
http://trials.adobe.com/AdobeProducts/APRO/19/osx10/Acrobat_DC_Web_WWMUI.dmg
Adobe Acrobat DC PRO 2020
https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/osx10/Acrobat_DC_Web_WWMUI_1012.dmg
Adobe Acrobat DC PRO 2020
http://trials.adobe.com/AdobeProducts/APRO/20/osx10/Acrobat_DC_Web_WWMUI.dmg
Adobe Acrobat DC PRO 2021
https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/osx10/Acrobat_DC_Web_WWMUI_1013.dmg
Adobe Acrobat DC PRO 2022
https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/osx10/Acrobat_DC_Web_WWMUI_1014.dmg
Adobe Acrobat DC PRO 2023
https://ardownload3.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2300820423/AcrobatDC2300820423_MUI.pkg
Adobe Acrobat DC PRO 2024 (Aiアシスタント非対応最終版)
https://ardownload2.adobe.com/pub/adobe/acrobat/mac/AcrobatDC/2400320180/AcrobatDC2400320180_MUI.pkg
基本は各バージョンの最終版
2020はDC版の2020でClassicの2020ではありません
 
Adobe Acrobat Reader 無料版 過去のバージョン macOS用
Adobe Acrobat Reader 2015
https://ardownload3.adobe.com/pub/adobe/reader/mac/AcrobatDC/1502320053/AcroRdrDC_1502320053_MUI.dmg
Adobe Acrobat Reader 2017
https://ardownload3.adobe.com/pub/adobe/reader/mac/AcrobatDC/1701220093/AcroRdrDC_1701220093_MUI.dmg
Adobe Acrobat Reader 2018
https://ardownload3.adobe.com/pub/adobe/reader/mac/AcrobatDC/1801120063/AcroRdrDC_1801120063_MUI.dmg
Adobe Acrobat Reader 2019
https://ardownload3.adobe.com/pub/adobe/reader/mac/AcrobatDC/1902120058/AcroRdrDC_1902120058_MUI.dmg
Adobe Acrobat Reader 2020
https://ardownload3.adobe.com/pub/adobe/reader/mac/AcrobatDC/2001320074/AcroRdrDC_2001320074_MUI.dmg
Adobe Acrobat Reader 2021
https://ardownload3.adobe.com/pub/adobe/reader/mac/AcrobatDC/2101120039/AcroRdrDC_2101120039_MUI.dmg
Adobe Acrobat Reader 2022
https://ardownload3.adobe.com/pub/adobe/reader/mac/AcrobatDC/2200320314/AcroRdrDC_2200320314_MUI.dmg
Adobe Acrobat Reader 2023
https://ardownload3.adobe.com/pub/adobe/reader/mac/AcrobatDC/2300820555/AcroRdrDC_2300820555_MUI.dmg
Adobe Acrobat Reader 2024 (Aiアシスタント非対応最終版)
https://ardownload3.adobe.com/pub/adobe/reader/mac/AcrobatDC/2400320180/AcroRdrDC_2400320180_MUI.dmg
基本は各バージョンの最終版
2020はDC版の2020でClassicの2020ではありません

【W】Windows版
【A】Adobe Acrobat 製品版
【B】Acrobat Reader 無料版
【C】Adobe Acrobat 2024(旧Classic) (Reader版無し)
【D】Acrobat2020 (2025年6月1日サポート終了)

【A】Adobe Acrobat Windows 製品版
【A】Adobe Acrobat 製品版
【A-1】Adobe Acrobat Pro 32bit 版 ARM版
https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/win32/Acrobat_DC_Web_WWMUI.zip
【A-1】Adobe Acrobat Pro 64bit版
https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/win32/Acrobat_DC_Web_x64_WWMUI.zip
ARMプロセッサのWindows11は32bit版を利用のこと
【B】Acrobat Reader Windows 無料版
【B】Acrobat Reader 無料版 Windows
Acrobat Reader 32bit マルチリンガル
https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2500120566/AcroRdrDC2500120566_MUI.exe
Acrobat Reader 32bit 日本語 v2500120566
https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2500120566/AcroRdrDC2500120566_ja_JP.exe
Acrobat Reader 64bit マルチリンガル
https://ardownload3.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2500120566/AcroRdrDCx642500120566_MUI.exe
Acrobat Reader 64bit 日本語
https://ardownload3.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2500120566/AcroRdrDCx642500120566_ja_JP.exe
マルチリンガル版推奨 / ARMプロセッサのWindows11は32bit版

【W】Windows版その他
【C】Adobe Acrobat 2024(旧Classic)製品版
詳細・URL
Adobe Acrobat 2024(旧Classic) 64bit日本語 Reader版無し
https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/win32/Acrobat_Classic_Web_x64_WWMUI.zip
AV2新UIのみ利用可 旧UIが利用出来ない
【D】Acrobat 2020 Windows (2025年6月1日サポート終了)
Acroabt 2020 非DC版
【D-A】Acrobat 2020 32bit製品版 非DC
https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/win32/Acrobat_2020_Web_WWMUI.zip
【D-B】AcrobatReader 2020 32bit Reader 非DC版
https://ardownload2.adobe.com/pub/adobe/reader/win/Acrobat2020/2000130002/AcroRdr20202000130002_MUI.exe
(2025年6月1日サポート終了)
【A】Acrobat Windows 製品版 過去バージョン
詳細・URL
Adobe Acrobat DC 2020 新規インストーラー
https://trials.adobe.com/AdobeProducts/APRO/20/win32/Acrobat_DC_Web_WWMUI.exe
Adobe Acrobat DC 2019 CC用 新規インストーラー
https://prdl-download.adobe.com/Acrobat%20Professional/D7F54F0D29444633826976D79A5A752C/1551091346749/Acrobat_DC_Web_WWMUI.exe
Adobe Acrobat DC 2019 エンタープライズ版 新規インストーラー
https://trials.adobe.com/AdobeProducts/APRO/19/win32/Acrobat_DC_Web_WWMUI.exe
Adobe Acrobat DC 2018 エンタープライズDC版 新規インストーラー
https://trials.adobe.com/AdobeProducts/APRO/18/win32/Acrobat_DC_Web_WWMUI.exe
Adobe Acrobat DC 2017 DC版 新規インストーラー
https://prdl-download.adobe.com/Acrobat%20Professional/7D1CAD83986848F092F39734E60DCFEA/1508138997522/Acrobat_DC_Web_WWMUI.exe
Adobe Acrobat DC 2017 非DC版 新規インストーラー
https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/win32/Acrobat_2017_Web_WWMUI.zip
Adobe Acrobat 2015 非DC版 新規インストーラー
https://trials.adobe.com/AdobeProducts/APRO/Acrobat_HelpX/win32/Acrobat_2015_Web_WWMUI.zip
Adobe Acrobat DC 2015 DC版 エンタープライズ版
https://trials.adobe.com/AdobeProducts/APRO/15/win32/Acrobat_DC_Web_WWMUI.exe
AV2新UIのみ利用可 旧UIが利用出来ない
【B】Adobe Acrobat Reader Windows 過去バージョン
【旧バージョン】Acrobat Reader Windows v24.003(AIアシスタント非搭載)
Acrobat Reader 32bit マルチリンガル
https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2400320112/AcroRdrDC2400320112_MUI.exe
Acrobat Reader 32bit 日本語
https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2400320112/AcroRdrDC2400320112_ja_JP.exe
Acrobat Reader 64bit マルチリンガル
https://ardownload3.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2400320112/AcroRdrDCx642400320112_MUI.exe
Acrobat Reader 64bit 日本語
https://ardownload3.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2400320112/AcroRdrDCx642400320112_ja_JP.exe
Acrobat Reader 64bit フォント・スペル辞書 2023
https://ardownload3.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2300820421/AcroRdrALSDx64_2300820421_all_DC.msi
Acrobat Reader 64bit フォント・スペル辞書 2022
https://ardownload3.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2200120085/AcroRdrALSDx64_2200120085_all_DC.msi
Acrobat Reader 64bit フォント・スペル辞書 2021
https://ardownload2.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2100120135/AcroRdrALSDx64_2100120135_all_DC.msi
 
 
【旧バージョン】Acrobat Reader Windows v24.001
DC Reader 24 初回
https://ardownload2.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2400120604/AcroRdrDCx642400120604_MUI.exe
DC Reader 23 最終
https://ardownload2.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2300820555/AcroRdrDCx642300820555_MUI.exe
DC Reader 22 最終
https://ardownload2.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2200320322/AcroRdrDCx642200320322_MUI.exe
DC Reader 21 最終
https://ardownload2.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2101120039/AcroRdrDCx642101120039_MUI.exe
 
 
【旧バージョン】Acrobat Reader Windows v23
Acrobat Reader 32bit マルチリンガル
https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2300820555/AcroRdrDC2300820555_MUI.exe
Acrobat Reader 32bit 日本語
https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2300820555/AcroRdrDC2300820555_ja_JP.exe
Acrobat Reader 64bit マルチリンガル
https://ardownload3.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2300820555/AcroRdrDCx642300820555_MUI.exe
Acrobat Reader 64bit 日本語
https://ardownload3.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2300820555/AcroRdrDCx642300820555_ja_JP.exe
 
 
【旧バージョン】Acrobat Reader Windows v22
Acrobat Reader 32bit マルチリンガル
https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2200320322/AcroRdrDC2200320322_MUI.exe
Acrobat Reader 32bit 日本語
https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2200320322/AcroRdrDC2200320322_ja_JP.exe
Acrobat Reader 64bit マルチリンガル
https://ardownload3.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2200320322/AcroRdrDCx642200320322_MUI.exe
Acrobat Reader 64bit 日本語
https://ardownload3.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2200320322/AcroRdrDCx642200320322_ja_JP.exe
 
 
【旧バージョン】Acrobat Reader Windows v21
Acrobat Reader 32bit マルチリンガル
https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2101120039/AcroRdrDC2101120039_MUI.exe
Acrobat Reader 32bit 日本語
https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2101120039/AcroRdrDC2101120039_ja_JP.exe
Acrobat Reader 64bit マルチリンガル
https://ardownload3.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2101120039/AcroRdrDCx642101120039_MUI.exe
Acrobat Reader 64bit 日本語
https://ardownload3.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2101120039/AcroRdrDCx642101120039_ja_JP.exe
 Win 10 v1809はここまで
 
【旧バージョン】Acrobat Reader Windows v20
Acrobat Reader 32bit マルチリンガル
https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2001320074/AcroRdrDC2001320074_MUI.exe
Acrobat Reader 32bit 日本語
https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2001320074/AcroRdrDC2001320074_ja_JP.exe
Win 7 SP1は2019まで

【S】サポートURL
Adobe Acrobat サポート
アップデータ
https://www.adobe.com/devnet-docs/acrobatetk/tools/ReleaseNotesDC/index.html#continuous-track
Creative Cloud Cleaner Tool macOS
https://helpx.adobe.com/creative-cloud/kb/cc-cleaner-tool-installation-problems.html
https://swupmf.adobe.com/webfeed/CleanerTool/mac/AdobeCreativeCloudCleanerTool.dmg
Creative Cloud Cleaner Tool Windows
https://helpx.adobe.com/creative-cloud/kb/cc-cleaner-tool-installation-problems.html
https://swupmf.adobe.com/webfeed/CleanerTool/win/AdobeCreativeCloudCleanerTool.exe
AcroCleaner Macintosh 2015ぐらいまで用
https://www.adobe.com/devnet-docs/acrobatetk/tools/Labs/cleaner.html#macintosh
https://www.adobe.com/devnet-docs/acrobatetk/tools/Labs/AdobeAcroCleanerTool.dmg
AcroCleaner Windows 2015ぐらいまで用 64bit
https://www.adobe.com/devnet-docs/acrobatetk/tools/Labs/cleaner.html#windows
https://www.adobe.com/devnet-docs/acrobatetk/tools/Labs/AcroCleaner_DC2015.zip
AcroCleaner Windows 2015ぐらいまで用 32bit
https://helpx.adobe.com/jp/acrobat/kb/cpsid_93506.html
https://labsdownload.adobe.com/pub/labs/acrobat_ittools/AdobeAcroCleaner_DC2015.zip
Uninstall Adobe Genuine Service
https://helpx.adobe.com/genuine/uninstall-adobe-genuine-service.html
Adobe Acrobat Diagnostics
https://helpx.adobe.com/acrobat/kb/acrobat-diagnostics.html
環境初期化
https://helpx.adobe.com/jp/creative-cloud/kb/remove-all-app.html
 

2024以降フォントパック・スペル辞書のインストールは不要

【Mac】フォントパック・スペル辞書
Font pack Spelling dictionary pack
2023.x 2023.x
2023.x Rosetta Independent on ARM machines 2023.x Rosetta Independent on ARM machines
2022.x 2022.x
2021.x with Mac M1 support
2021.x with Mac M1 support
2021.x 2021.x, 2020.x, and 2019.x
2020.x, and 2019.x 2021.x, 2020.x, and 2019.x
2018.x, 2017.x, and 2015.x 2018.x, 2017.x, and 2015.x
 

2024以降フォントパック・スペル辞書のインストールは不要

【Windows】フォントパック・スペリング辞書 32bit
Font pack Spelling dictionary pack
2023.x (Continuous) 2023.x (Continuous)
2022.x (Continuous) 2022.x (Continuous)
2021.x (Continuous) 21.x, 20.x, and 19.x (Continuous)
2020.x, 2019.x (Continuous) 21.x, 20.x, and 19.x (Continuous)
2018.x, 2017.x, and 2015.x (Continuous) 15.x, 17,x and 18.x (Continuous)
 

| | コメント (0)

【SCA(single cliant app)版】Adobe Acrobat インストーラー・アップデータ一覧(令和07年07月12日土曜日時点)


  • 新規インストーラー


  • PKGDMGSCA版 新規インストーラー: Acrobat Pro (v2500120566)

  • PKGDMGSCA版 新規インストーラー: Acrobat Pro(macOS11以下用) (v2400420272)

  • PKGDMGSCA版 新規インストーラー: Acrobat Reader (v2500120566)

  • PKGDMGSCA版 新規インストーラー: Acrobat Reader(macOS11以下用) (v2400420272)


  • SCA Acrobat Pro アップデータ


  • PKGDMGSCA版アップデータ: Acrobat Pro累積 (v2500120566)

  • PKGDMGSCA版アップデータ: Acrobat Pro累積(macOS11以下用) (v2400420272)

  • PKGDMGSCA版アップデータ: Acrobat Pro差分 (v2500120566)

  • PKGDMGSCA版アップデータ: Acrobat Pro差分(macOS11以下用) (v2400420272)


  • SCA Acrobat Reader アップデータ


  • PKGDMGSCA版アップデータ: Acrobat Reader累積 (v2500120566)

  • PKGDMGSCA版アップデータ: Acrobat Reader累積(macOS11以下用) (v2400420272)

  • PKGDMGSCA版アップデータ: Acrobat Reader差分 (v2500120566)

  • PKGDMGSCA版アップデータ: Acrobat Reader差分(macOS11以下用) (v2400420272)

  • PKGDMGSCA版 新規インストーラー: PenultimateAcrobat Pro (v2500120529)

  • PKGDMGSCA版アップデータPenultimate: Acrobat Pro累積 (v2500120529)

  • PKGDMGSCA版アップデータPenultimate: Acrobat Pro差分 (v2500120529)

  • PKGDMGSCA版アップデータPenultimate: Acrobat Reader累積 (v2500120529)

  • PKGDMGSCA版アップデータPenultimate: Acrobat Reader差分 (v2500120529)




  • Acrobat 製品版


  • 32bit64bit新規インストーラー :Acrobaat Pro (v2500120566)

  • 32bit64bitMSP:アップデータ累積:Acrobaat Pro (v2500120566)

  • 32bit64bitMSP:アップデータ差分:Acrobaat Pro (v2500120566)

  • 累積差分MSI:アップデータ64bitのみ:Acrobaat Pro (v2500120566)


  • Acrobat Reader 無料版


  • 32bit64bit新規インストーラー・マルチリンガル版:Acrobaat Reader (v2500120566)

  • 32bit64bit新規インストーラー:単言語JA版:Acrobaat Reader (v2500120566)

  • 32bit64bitMSI:累積アップデータ:Acrobaat Reader (v2500120566)

  • 32bit64bitMSP:累積アップデータ:Acrobaat Reader (v2500120566)

  • 32bit64bitMSP:累積アップデータ・マルチリンガル版:Acrobaat Reader (v2500120566)

  • 32bit64bitMSI:差分アップデータ:Acrobaat Reader (v2500120566)

  • 32bit64bitMSP:差分アップデータ:Acrobaat Reader (v2500120566)

  • 32bit64bitMSP:差分アップデータ・マルチリンガル版:Acrobaat Reader (v2500120566)

| | コメント (0)

[romkan]ローマ字よみの英字の日本語をひらがな・カタカナに変換します



ダウンロード - hira_kata_dec.zip




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

ひら2RO.applescript
ソース
001#!/usr/bin/env osascript
002----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
003(*
004
005日本語のひらがなをローマ字読みで書かれた英字に変換します
006romkanを利用します
007python3が必須ですのでXcodeがインストール済みの必要があります
008同封のセットアップを実施してください
009
010com.cocolog-nifty.quicktimer.icefloe *)
011----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
012use AppleScript version "2.8"
013use framework "Foundation"
014use framework "AppKit"
015use scripting additions
016property refMe : a reference to current application
017property refNSNotFound : a reference to 9.22337203685477E+18 + 5807
018
019
020set strText to ("もじをにゅうりょくしてください") as «class utf8»
021
022########################
023## クリップボードの中身取り出し
024########################
025###初期化
026set appPasteboard to refMe's NSPasteboard's generalPasteboard()
027##格納されているタイプをリストにして
028set ocidPastBoardTypeArray to appPasteboard's types
029###テキストがあれば
030set boolContain to ocidPastBoardTypeArray's containsObject:("public.utf8-plain-text")
031if (boolContain as boolean) is true then
032   ###値を格納する
033   tell application "Finder"
034      set strReadString to (the clipboard as text) as «class utf8»
035   end tell
036else
037   ###UTF8が無いなら
038   ##テキスト形式があるか?確認して
039   set boolContain to ocidPastBoardTypeArray's containsObject:(refMe's NSPasteboardTypeString)
040   ##テキスト形式があるなら
041   if (boolContain as boolean) is true then
042      set ocidTypeClassArray to refMe's NSMutableArray's alloc()'s initWithCapacity:(0)
043      ocidTypeClassArray's addObject:(refMe's NSString)
044      set ocidReadString to appPasteboard's readObjectsForClasses:(ocidTypeClassArray) options:(missing value)
045      set strReadString to ocidReadString as «class utf8»
046   else
047      log "テキストなし"
048      set strReadString to strMes as «class utf8»
049   end if
050end if
051##############################
052#####ダイアログ
053##############################
054###ダイアログを前面に出す
055set strName to (name of current application) as text
056if strName is "osascript" then
057   tell application "Finder" to activate
058else
059   tell current application to activate
060end if
061set strMes to "変換するテキストを入力してください"
062set aliasIconPath to POSIX file "/System/Applications/Automator.app/Contents/Resources/AppIcon.icns" as alias
063try
064   set recordResult to (display dialog strMes with title "入力してください" default answer strReadString buttons {"OK", "キャンセル"} default button "OK" with icon aliasIconPath giving up after 20 without hidden answer) as record
065on error
066   log "エラーしました"
067   return
068end try
069if "OK" is equal to (button returned of recordResult) then
070   set strReturnedText to (text returned of recordResult) as «class utf8»
071else if (gave up of recordResult) is true then
072   return "時間切れです"
073else
074   return "キャンセル"
075end if
076##############################
077#####戻り値整形
078##############################
079set ocidReturnedText to (refMe's NSString's stringWithString:(strReturnedText))
080#改行を置換しておく
081set ocidReturnedText to (ocidReturnedText's stringByReplacingOccurrencesOfString:("\r\n") withString:("⏎"))
082set ocidReturnedText to (ocidReturnedText's stringByReplacingOccurrencesOfString:("\r") withString:("⏎"))
083set ocidResponseText to (ocidReturnedText's stringByReplacingOccurrencesOfString:("\n") withString:("⏎"))
084
085###最低限のエスケープ処理
086set ocidReturnedText to (ocidReturnedText's stringByReplacingOccurrencesOfString:("\\") withString:("\\\\\\"))
087set ocidReturnedText to (ocidReturnedText's stringByReplacingOccurrencesOfString:("'") withString:("\\'"))
088set ocidReturnedText to (ocidReturnedText's stringByReplacingOccurrencesOfString:("\"") withString:("\\\""))
089set strText to ocidReturnedText as «class utf8»
090##############################
091#####処理実行
092##############################
093set strCommandText to ("/usr/bin/which python3") as text
094set strPyBinPath to doZshShellScript(strCommandText) as text
095
096set strCommandText to ("") as text
097set strCommandText to ("\"" & strPyBinPath & "\" -c 'import romkan; print(romkan.to_roma(\"" & strText & "\"))'") as text
098set strReturnedText to (do shell script strCommandText) as text
099##############################
100#####戻り値整形
101##############################
102set ocidResponseText to (refMe's NSString's stringWithString:(strReturnedText))
103
104set ocidResponseText to (ocidResponseText's stringByReplacingOccurrencesOfString:("⏎") withString:("\n"))
105
106set strOutPutText to ocidResponseText as «class utf8»
107
108##############################
109#####ダイアログ
110##############################
111tell current application
112   set strName to name as text
113end tell
114####スクリプトメニューから実行したら
115if strName is "osascript" then
116   tell application "Finder"
117      activate
118   end tell
119else
120   tell current application
121      activate
122   end tell
123end if
124set strMes to "変換しましたコピーして使ってください"
125try
126   set recordResult to (display dialog strMes with title "戻り値です" default answer strOutPutText buttons {"クリップボードにコピー", "終了", "再実行"} default button "再実行" cancel button "終了" giving up after 20 with icon aliasIconPath without hidden answer) as record
127on error
128   return "エラーしました"
129end try
130if (gave up of recordResult) is true then
131   return "時間切れです"
132end if
133##############################
134#####自分自身を再実行
135##############################
136if button returned of recordResult is "再実行" then
137   tell application "Finder"
138      set aliasPathToMe to (path to me) as alias
139   end tell
140   run script aliasPathToMe with parameters "再実行"
141end if
142##############################
143#####値のコピー
144##############################
145if button returned of recordResult is "クリップボードにコピー" then
146   try
147      set strText to text returned of recordResult as text
148      ####ペーストボード宣言
149      set appPasteboard to refMe's NSPasteboard's generalPasteboard()
150      set ocidText to (refMe's NSString's stringWithString:(strText))
151      appPasteboard's clearContents()
152      appPasteboard's setString:(ocidText) forType:(refMe's NSPasteboardTypeString)
153   on error
154      tell application "Finder"
155         set the clipboard to strText as text
156      end tell
157   end try
158end if
159
160
161return 0
162
163
164
165##########################
166# ZSH 実行
167to doZshShellScript(argCommandText)
168   set strCommandText to argCommandText as text
169   log "コマンド開始\r" & strCommandText & "\r"
170   set strExec to ("/bin/zsh -c '" & strCommandText & "'") as text
171   ##########
172   #コマンド実行
173   try
174      set strResnponse to (do shell script strExec) as text
175      log "コマンド終了"
176   on error
177      return false
178   end try
179   return strResnponse
180end doZshShellScript
AppleScriptで生成しました

| | コメント (0)

«[pykakasi]漢字混じり日本語をひらがな・カタカナ・ローマ字変換する