连接到特定 PPPoE 配置的 Applescript 是什么样子的?我想通过 Launchbar 触发它。
(或者一个更花哨的脚本,它检查当前选择的网络位置是否正确,以及以太网电缆是否插入,然后自动连接到 PPPoE 服务。不过,我对更简单的版本完全满意)
答案1
do shell script "/usr/sbin/scselect [insert appropriate network location]"
tell application "System Events"
tell network preferences
connect service "[insert name of PPPoE service]"
end tell
end tell