Here is the Powershell that I am using and it works fine. Even when you save credentials.     $ServerAddress = "Outside IP Address or DNS Name for the Meraki"  $ConnectionName = "Name of the Connection"  $PresharedKey = "Pre-Shared Key"  $DNSSuffix = "corp.walterrobbs.com"  $Destination = "Destination Subnet for Split-Tunneling"  Add-VpnConnection -Name "$ConnectionName" -ServerAddress "$ServerAddress" -TunnelType L2tp -L2tpPsk "$PresharedKey" -AuthenticationMethod Pap, CHAP, MSChapv2 -DnsSuffix $DNSSuffix -RememberCredential -Force  Start-Sleep -m 100  Set-VpnConnection -Name $ConnectionName -SplitTunneling $True  Start-Sleep -m 100  Add-Vpnconnectionroute -Connectionname $ConnectionName -DestinationPrefix $Destination 
						
					
					... View more