I am trying to make a simple script that will setup a VPN connection in Windows for the different remote users that need to be on our VPN.
I was going to go with powershell as I couldn't find a way to do this with netsh and found this:
Add-VpnConnection -Name "Test1" -ServerAddress "10.1.1.1" -PassThru
However I tried it and it does not appear to work on Windows 7, looked it up and see that it is only for Windows 8 and up / Server 2012 and up.
Is there any Windows 7 equivalent? Or a way to get this to work on Windows 7?