{"id":7198,"date":"2023-08-02T09:37:24","date_gmt":"2023-08-02T09:37:24","guid":{"rendered":"https:\/\/pariswells.com\/blog\/?p=7198"},"modified":"2023-08-02T09:37:26","modified_gmt":"2023-08-02T09:37:26","slug":"powershell-script-for-windows-vpn-creation","status":"publish","type":"post","link":"https:\/\/pariswells.com\/blog\/research\/powershell-script-for-windows-vpn-creation","title":{"rendered":"Powershell Script for Windows VPN Creation"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code class=\"\">\n$VPN = \"VPN\"\n$RegPath = \"HKLM:\\SYSTEM\\CurrentControlSet\\Services\\RasMan\\PPP\"\n$VPNAddress =\"azuregateway-XXXXXXX.vpn.azure.com\"\n$Name = \"MaxConfigure\"\n$value = \"60\"\nAdd-VpnConnection -Name $VPN `\n\t-ServerAddress $VPNAddress `\n\t-TunnelType \"sstp\" `\n\t-EncryptionLevel \"Required\" `\n    -DnsSuffix \"domain.com\" `\n    -AuthenticationMethod MSChapv2 `\n    -PassThru `\n    -AllUserConnection `\n    -RememberCredential `\n    -SplitTunneling\nAdd-VpnConnectionRoute -ConnectionName $VPN -DestinationPrefix 10.20.0.0\/16\n\nNew-ItemProperty -Path $RegPath -Name $name -Value $value -PropertyType DWORD -Force | Out-Null\n\n\n#-UseWinlogonCredential `<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-7198","post","type-post","status-publish","format-standard","hentry","category-research"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/7198","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/comments?post=7198"}],"version-history":[{"count":1,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/7198\/revisions"}],"predecessor-version":[{"id":7199,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/7198\/revisions\/7199"}],"wp:attachment":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/media?parent=7198"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/categories?post=7198"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/tags?post=7198"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}