Quickguide to add a new VPN via command line in N-able

First step go to the computer in N-able then click on the Tools tab


Next, start a session in the Command Prompt tab


Now you want to summon Powershell in the window.
Please note that for technical reasons it can't be pushed thru the -Command argument here.


Type in 

powershell.exe


You will see the PS compiler at the beginning of the line ready to pass your command(s) to powershell.exe

Next, type your VPN creation command

Here is the documentation to build your own command

Here is an example of an actual client's command

Add-VpnConnection -Name "DXP VPN" -ServerAddress "vpn.dxpostal.com" -TunnelType "sstp" -EncryptionLevel "required" -AuthenticationMethod MSChapv2 -SplitTunneling -UseWinlogonCredential -RememberCredential -AllUserConnection -PassThru



You will get a confirmation output in the PowerShell window, you can then End Session at the top left and exit the page.

You've now added the VPN connection to the global "Phonebook" in windows.

I would recommend you read the documentation on each of the arguments I pushed to the command above, but it's very important to remember that -AllUserConnection is an admin command that will push the VPN connection to all the users on the computer with the same settings.