Apple Script + VPN + Metin Kutusu


0

Bir el kitabım var:

tell application "System Events"
    tell current location of network preferences
        set VPNService to service "VPN (Cisco IPSec)"
        if exists VPNService then
            connect VPNService
        end if
    end tell
end tell

Yürütdüğümde bir iletişim kutusu gösteriliyor ve benden şifremi sor. Bu işlemi otomatikleştirmek ve doğrudan şifremi komut dosyama koymak ve iletişim kutusunu otomatik olarak doğrulamak istiyorum.

Bunu yapmanın bir yolu var mı?

Yanıtlar:


2

İşte basit bir çözüm.

tell application "System Events"
    tell current location of network preferences
        set VPNService to service "UJF"
        if exists VPNService then
            connect VPNService
        end if
    end tell
    delay 1
    keystroke "yourpassword"
end tell

Popopun açılması için 1 saniye gecikme yeterli değilse, arttırmak için çekinmeyin!

Fakat unutma, bir şifre * * ASLA böyle saklanmamalıdır.

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.