« [Acrobat]前面タブの操作 | トップページ | BIZ UD明朝 BIZ UDP明朝 »

XProtectアップデートチェック


AppleScript サンプルコード

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

AppleScript サンプルソース(参考)
行番号ソース
001#! /usr/bin/env osascript
002----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
003#
004#
005# com.cocolog-nifty.quicktimer.icefloe
006----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
007use AppleScript version "2.8"
008use scripting additions
009
010property refMe : a reference to current application
011
012set strCommandText to ("/bin/zsh -c '/usr/sbin/softwareupdate --list --include-config-data'") as text
013log strCommandText
014try
015  set strResponse to do shell script strCommandText
016  if strResponse contains "Update found" then
017    set strCommandText to ("/bin/zsh -c '/usr/sbin/softwareupdate --install --recommended --include-config-data'") as text
018    log strCommandText
019    try
020      do shell script strCommandText
021    end try
022  end if
023on error
024  log "softwareupdate listでエラーになりました"
025end try
026return "通常はここまでで良い"
027tell application id "co.eclecticlight.SilentKnight"
028  launch
029  activate
030end tell
AppleScriptで生成しました

|

« [Acrobat]前面タブの操作 | トップページ | BIZ UD明朝 BIZ UDP明朝 »

Admin Maintenance」カテゴリの記事