Eu configurei um aplicativo applescript (salvo com o nome "BTGuard VPN-OSX) para forçar o OSX a se conectar com meu serviço VPN (BTGuard). Eu segui as instruções deste link link , inserindo" BTGuard "como meu serviço.
Isso é o que eu digitei na caixa do Applescript:
on idle
tell application "System Events"
tell current location of network preferences
set myConnection to the service "BTGuard VPN"
if myConnection is not null then
if current configuration of myConnection is not connected then
connect myConnection
end if
end if
end tell
return 120
end tell
end idle
No entanto, quando clico no novo aplicativo, recebo esta mensagem pop-up:
Can't get class svce "BTGuard VPN" of class locc of classnetp of application "System Events". I guess I don't know how to edit the command properly.
Alguém pode me ajudar a descobrir o problema? É com o 'serviço'? O que fazer?
Tags vpn macos applescript