-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVPNRunner.ps1
52 lines (44 loc) · 1.69 KB
/
VPNRunner.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
param([string]$connectionName, [string]$user, [string]$password, [switch]$autoConnect = $false)
# Make sure important args are not empty
if ([string]::IsNullOrWhiteSpace($connectionName) -or [string]::IsNullOrWhiteSpace($user) -or [string]::IsNullOrWhiteSpace($password)){
"Invalid arguments!"
exit
}
$vpnExeFilePath = [System.IO.Path]::Combine($env:ProgramFiles, "ShrewSoft", "VPN Client", "ipsecc.exe")
function Get-PasswordFromEncFile{
param([string]$encFilePath)
$fileContents = [System.IO.File]::ReadAllText($encFilePath).Trim()
$secStr = ConvertTo-SecureString $fileContents
$nc = New-Object System.Net.NetworkCredential
$nc.SecurePassword = $secStr
return $nc.Password
}
function Restart-Services{ # Must be running as Administrator to do this
Restart-Service iked,ipsecd
}
# If password is a path to an encoded file, handle that
if ([System.IO.Directory]::Exists([System.IO.Path]::GetDirectoryName($password))){
$password = Get-PasswordFromEncFile $password
}
# Construct argument string
$sb = New-Object System.Text.StringBuilder
$noop = $sb.Append("-r $connectionName ")
$noop = $sb.Append("-u $user")
if (![string]::IsNullOrWhiteSpace($password)){
$noop = $sb.Append(" -p $password")
}
if ($autoConnect){
$noop = $sb.Append(" -a")
}
# Initialize process
$startInfo = New-Object System.Diagnostics.ProcessStartInfo
$startInfo.UseShellExecute = $true
$startInfo.FileName = $vpnExeFilePath
$startInfo.Arguments = $sb.ToString()
if ($autoConnect){
$startInfo.WindowStyle = [System.Diagnostics.ProcessWindowStyle]::Minimized
}
# Restart services to ensure we're running fresh
Restart-Services
# Start process
$startRes = [System.Diagnostics.Process]::Start($startInfo)