[AppleScript]UUIDを表示させる
ByHost[LINK]内に書かれる
初期設定に関係して
今のUUIDは何なのよ?を表示させる『だけ』の
単機能スクリプト
---コマンド
set UUIDcom to "ioreg -rd1 -c IOPlatformExpertDevice | grep -E '(IOPlatformUUID)'" as text
---コマンド実行
set IOPlatform to (do shell script UUIDcom)
----文字数を数える
set CntIOPlatform to the length of characters of IOPlatform
---UUIDを抜き出す
set MyUUID to characters 27 thru (CntIOPlatform - 1) of IOPlatform as Unicode text
tell application "Finder"
activate
display dialog MyUUID default answer the MyUUID
end tell
| 固定リンク
「OSX」カテゴリの記事
- [Shortcuts.app]管理者で実行(2021.11.18)
- [OS12]UniqueID UID を取得する(2021.11.08)
- [OS12]文字ビューアを出す(文字パレット)(2021.11.07)
- macOS 12 システム環境設定 パスワード(2021.10.26)
- [OS11]書類“〓〓〓〓〓〓”を保存できませんでした。ファイルがロックされています。(2021.10.12)
この記事へのコメントは終了しました。
コメント