Do not use on any
shared computer
August 30, 2008 02:16am pdt
 
[x]
Attachment Details

Script to create a VPN server connection on Windows XP

Tags: vpn, create, script, connection, windows
Is there any way I can script the creation of a VPN server connection on Windows XP? I need to make it simple for my users to set up a VPN server.

I'd like to use VB or VBScript.
Start your free trial to view this solution
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

Question Stats
Zone: Programming
Question Asked By: HKComputer
Solution Provided By: sirbounty
Participating Experts: 2
Solution Grade: A
Views: 175
Translate:
Loading Advertisement...
 
[+][-]Expert Comment by sirbounty

Rank: Wizard

Expert Comment by sirbounty:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Author Comment by HKComputer
Author Comment by HKComputer:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Accepted Solution by sirbounty

Rank: Wizard

Accepted Solution by sirbounty:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Author Comment by HKComputer
Author Comment by HKComputer:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Expert Comment by sirbounty

Rank: Wizard

Expert Comment by sirbounty:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Author Comment by HKComputer
Author Comment by HKComputer:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Loading Advertisement...
Open Discussion
Open Discussion
 
Comment by onthemapp
Hi sirBounty, That was an awesome help, there was a slight error with your vbs script - Great help though - heres the slow version I am using to setup VPN's - you can see each part step through so if you want to change anything it's real simple :)

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:
Dim objShell: Set objShell = CreateObject("Wscript.Shell")
 
strHost="vpn.company.com"
strCo="Company"
 
With objShell
  .Run "Control ncpa.cpl"
  wscript.sleep 4000
  .AppActivate "Network Connections"
  wscript.sleep 4000
  .SendKeys "%FN"
  wscript.sleep 2000
  .SendKeys "%N"
  wscript.sleep 2000
  .SendKeys "%O"
  wscript.sleep 2000
  .SendKeys "%N"
  wscript.sleep 2000
  .SendKeys "%V"
  wscript.sleep 2000
  .SendKeys "%N"
  wscript.sleep 2000
  .SendKeys strCo
  wscript.sleep 2000
  .SendKeys "%N"
  wscript.sleep 2000
  .SendKeys "%D"
  wscript.sleep 2000
  .SendKeys "%N"
  wscript.sleep 2000
  .SendKeys strHost 
  wscript.sleep 2000
  .SendKeys "%N"
  wscript.sleep 2000
  .SendKeys "%A"
  wscript.sleep 2000
  .SendKeys "%N"
  wscript.sleep 2000
  .SendKeys "%S"
  wscript.sleep 2000
  .SendKeys "%N{TAB}{TAB}~"
End With
 
Set objShell=Nothing
Open in New Window
 
 
Comment by sirbounty
Yeah, the sendkeys method is never 100% but can get you out of some tricky situations if you don't mind the hiccups... ;^)
 
 
20080723-EE-VQP-34