« Mac OS X Security Configuration Guides | トップページ | [AppleScript]GlobalPreferences.plistを開く »

[AppleScript]UUIDを表示させる

ByHost[LINK]OpenNewWindow内に書かれる
初期設定に関係して
今の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

「ioreg.zip」をダウンロード[Download]DownloadFile

「ioreg.html」をダウンロード[Download]DownloadFile

「ioreg.rtf」をダウンロード[Download]DownloadFile

|

« Mac OS X Security Configuration Guides | トップページ | [AppleScript]GlobalPreferences.plistを開く »

OSX」カテゴリの記事

コメント

この記事へのコメントは終了しました。