This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class NotNullOrEmptyCollectionAttribute : ValidationAttribute | |
| { | |
| private readonly int _length; | |
| public NotNullOrEmptyCollectionAttribute(int length) | |
| { | |
| _length = length; | |
| } | |
| public NotNullOrEmptyCollectionAttribute() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Set WshShell = WScript.CreateObject("WScript.Shell") | |
| WshShell.Run """%PROGRAMFILES(x86)%\Cisco\Cisco AnyConnect Secure Mobility Client\vpnui.exe""" | |
| WScript.Sleep 2000 | |
| WshShell.AppActivate "Cisco AnyConnect Secure Mobility Client" | |
| WshShell.SendKeys "{TAB}" | |
| WshShell.SendKeys "{TAB}" |
NewerOlder