Skip to content

Instantly share code, notes, and snippets.

@paveleremin
Created February 24, 2017 06:45
Show Gist options
  • Select an option

  • Save paveleremin/323cf97e97990278d5ae321573c55f71 to your computer and use it in GitHub Desktop.

Select an option

Save paveleremin/323cf97e97990278d5ae321573c55f71 to your computer and use it in GitHub Desktop.
Cisco AnyConnect: save password
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run """%PROGRAMFILES(x86)%\Cisco\Cisco AnyConnect Secure Mobility Client\vpnui.exe"""
WScript.Sleep 1500
WshShell.AppActivate "Cisco AnyConnect Secure Mobility Client"
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{ENTER}"
WScript.Sleep 3500
WshShell.SendKeys "YourPassword"
WshShell.SendKeys "{ENTER}"
@JBerls

JBerls commented Oct 29, 2021

Copy link
Copy Markdown

Brilliant! Thanks so much.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment