カテゴリー「Mac: 2008年6月」の一覧

2008年6月 6日

MacからダブルクリックでWindowsの共有フォルダーを開く

Apple Scriptで実現できます

tell application "Finder"
    activate
    try
        set ping_result to (do shell script "ping -c 1 192.168.0.**")
        mount volume "smb://[user名]:[password]@192.168.0.**/[フォルダ名]"
    end try
   
end tell