Fill in vpn token

 

activate application "SystemUIServer"
tell application "System Events"
	tell process "SystemUIServer"
		
		set x to item 3 of menu bar items of menu bar 1
		tell x
			click
			click menu item "Connect Cisco VPN" of front menu
			delay 3
			keystroke token
			keystroke return
		end tell
	end tell
end tell

 

gen tokens with apple script

 

set tokens to ""
tell application "System Events" to tell process "SofToken II"
	tell application "SofToken II" to activate
	delay 1
	keystroke "***"
	delay 1
	repeat 10 times
		keystroke return
		set token to the clipboard
		set tokens to tokens & "\r" & token
		delay 1
	end repeat
end tell

tokens