-
Notifications
You must be signed in to change notification settings - Fork 0
/
powershell_auto_connect_vpn.html
700 lines (639 loc) · 50.4 KB
/
powershell_auto_connect_vpn.html
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
<!DOCTYPE html>
<html prefix="og: http://ogp.me/ns#">
<head>
<!-- Basic -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Powershell script to auto connect to your VPN on startup</title>
<meta name="keywords" content="[<Tag 'vpn'>, <Tag 'win10'>, <Tag 'powershell'>, <Tag 'startup'>]" />
<meta name="description" content="Simple Powershell script that will automatically connect to your VPN on startup and reconnect if it gets disconnected.">
<link rel="canonical" href="https://www.magnumvpn.com/powershell_auto_connect_vpn.html"/>
<meta name="author" content="MagnumVPN">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="article">
<meta property="article:publisher" content="https://www.facebook.com/MagnumVPN/">
<meta property="og:title" content="Powershell script to auto connect to your VPN on startup">
<meta property="og:description" content="Simple Powershell script that will automatically connect to your VPN on startup and reconnect if it gets disconnected.">
<meta property="og:url" content="https://www.magnumvpn.com/powershell_auto_connect_vpn.html">
<meta property="og:site_name" content="MagnumVPN">
<meta property="og:image" content="https://www.magnumvpn.com/img/blog/powershell_auto_connect_vpn/powershell_auto_840x380.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:description" content="Simple Powershell script that will automatically connect to your VPN on startup and reconnect if it gets disconnected.">
<meta name="twitter:title" content="Powershell script to auto connect to your VPN on startup">
<meta name="twitter:site" content="@MagnumVPN">
<meta name="twitter:image" content="https://www.magnumvpn.com/img/blog/powershell_auto_connect_vpn/powershell_auto_840x380.png">
<meta name="twitter:creator" content="@MagnumVPN">
<meta name="DC.date.issued" content="2017-07-24 17:28:00-07:00">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- Web Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800%7CShadows+Into+Light" rel="stylesheet" type="text/css">
<!-- Vendor CSS -->
<link rel="stylesheet" href="/vendor/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="/vendor/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="/vendor/animate/animate.min.css">
<link rel="stylesheet" href="/vendor/simple-line-icons/css/simple-line-icons.min.css">
<link rel="stylesheet" href="/vendor/owl.carousel/assets/owl.carousel.min.css">
<link rel="stylesheet" href="/vendor/owl.carousel/assets/owl.theme.default.min.css">
<link rel="stylesheet" href="/vendor/magnific-popup/magnific-popup.min.css">
<!-- Theme CSS -->
<link rel="stylesheet" href="/css/theme.css">
<link rel="stylesheet" href="/css/theme-elements.css">
<link rel="stylesheet" href="/css/theme-blog.css">
<link rel="stylesheet" href="/css/theme-shop.css">
<!-- Current Page CSS -->
<link rel="stylesheet" href="/vendor/rs-plugin/css/settings.css">
<link rel="stylesheet" href="/vendor/rs-plugin/css/layers.css">
<link rel="stylesheet" href="/vendor/rs-plugin/css/navigation.css">
<link rel="stylesheet" href="/vendor/circle-flip-slideshow/css/component.css">
<!-- Skin CSS -->
<link rel="stylesheet" href="/css/skins/default.css">
<!-- Theme Custom CSS -->
<link rel="stylesheet" href="/css/custom.css">
<!-- Head Libs -->
<script src="/vendor/modernizr/modernizr.min.js"></script>
<script type="text/javascript">
var _paq = _paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//stats.magnumvpn.com/";
_paq.push(['setTrackerUrl', u+'js/']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'js/'; s.parentNode.insertBefore(g,s);
})();
</script>
</head>
<body>
<div class="body">
<header id="header" data-plugin-options="{'stickyEnabled': true, 'stickyEnableOnBoxed': true, 'stickyEnableOnMobile': true, 'stickyStartAt': 57, 'stickySetTop': '-57px', 'stickyChangeLogo': true}">
<div class="header-body">
<div class="header-container container">
<div class="header-row">
<div class="header-column">
<div class="header-logo">
<a href="https://www.magnumvpn.com/index.html">
<img alt="Porto" width="112" height="80" data-sticky-width="83" data-sticky-height="59" data-sticky-top="33" src="/img/logos/png/dark_logo_transparent_background_biggerTag_small.png">
<!-- <img alt="Porto" width="263" height="188" data-sticky-width="131" data-sticky-height="94" data-sticky-top="33" src=""> -->
</a>
</div>
</div>
<div class="header-column">
<div class="header-row">
<!--
<div class="header-search hidden-xs">
<form id="searchForm" action="page-search-results.html" method="get">
<div class="input-group">
<input type="text" class="form-control" name="q" id="q" placeholder="Search..." required>
<span class="input-group-btn">
<button class="btn btn-default" type="submit"><i class="fa fa-search"></i></button>
</span>
</div>
</form>
</div>
-->
<nav class="header-nav-top">
<ul class="nav nav-pills">
<li class="hidden-xs">
<a href="/aboutus.html"><i class="fa fa-angle-right"></i> About Us</a>
</li>
<li class="hidden-xs">
<a href="/contact-us.html"><i class="fa fa-angle-right"></i> Contact Us</a>
</li>
<li>
<span class="ws-nowrap"><i class="fa fa-phone"></i><a href="tel:+14808004763"> (480) 800-4763</a></span>
</li>
</ul>
</nav>
</div>
<div class="header-row">
<div class="header-nav">
<button class="btn header-btn-collapse-nav" data-toggle="collapse" data-target=".header-nav-main">
<i class="fa fa-bars"></i>
</button>
<ul class="header-social-icons social-icons hidden-xs">
<!-- <li class="social-icons-facebook"><a href="https://www.facebook.com/MagnumVPN/" target="_blank" title="Facebook"><i class="fa fa-facebook"></i></a></li> -->
<li class="social-icons-twitter"><a href="http://twitter.com/MagnumVPN" target="_blank" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<!-- <li class="social-icons-linkedin"><a href="https://www.linkedin.com/company/prompt-engineering-usa" target="_blank" title="Linkedin"><i class="fa fa-linkedin"></i></a></li> -->
</ul>
<div class="header-nav-main header-nav-main-effect-1 header-nav-main-sub-effect-1 collapse">
<nav>
<ul class="nav nav-pills" id="mainNav">
<li class="">
<a href="https://www.magnumvpn.com/index.html">
Home
</a>
</li>
<li class="">
<a href="https://www.magnumvpn.com/checkout.html"> <!-- <a href="https://vpn.ac/aff.php?aff=933"> -->
Pricing
</a>
</li>
<li class="dropdown">
<a class="dropdown-toggle" href="https://vpn.ac/aff.php?aff=933">
FAQs
</a>
<ul class="dropdown-menu">
<li><a href="/why-do-i-need-a-vpn.html">Why do I Need a VPN?</a></li>
<li><a href="/how-to-view-cookies-in-chrome.html">How to View Cookies in Chrome?</a></li>
<li><a href="/vpn-providers.html">10 criteria to choose a VPN Provider</a></li>
</ul>
</li>
<li class="">
<a href="https://vpn.ac/aff.php?aff=933">
Support
</a>
</li>
<li class="dropdown">
<a class="dropdown-toggle" href="#">
Guides
</a>
<ul class="dropdown-menu">
<li><a href="/powershell_auto_connect_vpn.html">Powershell VPN Auto Connect</a></li>
<li><a href="/setup-vpn-android-l2tp-ipsec.html">Android 7.0 L2TP VPN Setup</a></li>
<li><a href="/setup-vpn-windows-10-l2tp-ipsec.html">Windows 10 L2TP VPN Setup</a></li>
<li><a href="/setup-windows-10-firewall-l2tp.html">Windows 10 Firewall L2TP</a></li>
</ul>
</li>
<!-- <li class="dropdown dropdown-mega">
<a class="dropdown-toggle" href="#">
Guides
</a>
<ul class="dropdown-menu">
<li>
<div class="dropdown-mega-content">
<div class="row">
<div class="col-md-3">
<span class="dropdown-mega-sub-title">Windows</span>
<ul class="dropdown-mega-sub-nav">
<li><a href="/setup-vpn-windows-10-l2tp-ipsec.html">Windows 10 L2TP Setup</a></li>
<li><a href="/setup-windows-10-firewall-l2tp.html">Windows 10 Firewall L2TP</a></li>
</ul>
</div>
<div class="col-md-3">
<span class="dropdown-mega-sub-title">Shortcodes 2</span>
<ul class="dropdown-mega-sub-nav">
<li><a href="shortcodes-buttons.html">Buttons</a></li>
<li><a href="shortcodes-labels.html">Labels</a></li>
<li><a href="shortcodes-lists.html">Lists</a></li>
<li><a href="shortcodes-image-gallery.html">Image Gallery</a></li>
<li><a href="shortcodes-image-frames.html">Image Frames</a></li>
<li><a href="shortcodes-testimonials.html">Testimonials</a></li>
<li><a href="shortcodes-blockquotes.html">Blockquotes</a></li>
<li><a href="shortcodes-word-rotator.html">Word Rotator</a></li>
</ul>
</div>
<div class="col-md-3">
<span class="dropdown-mega-sub-title">Shortcodes 3</span>
<ul class="dropdown-mega-sub-nav">
<li><a href="shortcodes-call-to-action.html">Call to Action</a></li>
<li><a href="shortcodes-pricing-tables.html">Pricing Tables</a></li>
<li><a href="shortcodes-tables.html">Tables</a></li>
<li><a href="shortcodes-progressbars.html">Progress Bars</a></li>
<li><a href="shortcodes-counters.html">Counters</a></li>
<li><a href="shortcodes-sections-parallax.html">Sections & Parallax</a></li>
<li><a href="shortcodes-tooltips-popovers.html">Tooltips & Popovers</a></li>
<li><a href="shortcodes-sticky-elements.html">Sticky Elements</a></li>
</ul>
</div>
<div class="col-md-3">
<span class="dropdown-mega-sub-title">Shortcodes 4</span>
<ul class="dropdown-mega-sub-nav">
<li><a href="shortcodes-headings.html">Headings</a></li>
<li><a href="shortcodes-dividers.html">Dividers</a></li>
<li><a href="shortcodes-animations.html">Animations</a></li>
<li><a href="shortcodes-medias.html">Medias</a></li>
<li><a href="shortcodes-maps.html">Maps</a></li>
<li><a href="shortcodes-arrows.html">Arrows</a></li>
<li><a href="shortcodes-alerts.html">Alerts</a></li>
<li><a href="shortcodes-posts.html">Posts</a></li>
</ul>
</div>
</div>
</div>
</li>
</ul>
</li>
-->
<li class="">
<a class="" href="https://vpn.ac/aff.php?aff=933">
VPN.ac login
</a>
</li>
<li class="">
<a href="https://www.magnumvpn.com/checkout.html"> <!-- <a class="" href="https://vpn.ac/aff.php?aff=933"> -->
Buy Now
</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<div role="main" class="main">
<section class="page-header">
<div class="container">
<div class="row">
<div class="col-md-12">
<ul class="breadcrumb">
<li><a href="https://www.magnumvpn.com">Home</a></li>
<li class="active">Guides</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h1>Powershell script to auto connect to your VPN on startup</h1>
</div>
</div>
</div>
</section>
<div class="container">
<div class="row">
<div class="col-md-9">
<div class="blog-posts single-post">
<article class="post post-large blog-single-post">
<div class="post-image">
<div>
<div class="img-thumbnail">
<img class="img-responsive" src="/img/blog/powershell_auto_connect_vpn/powershell_auto_840x380.png" alt="">
</div>
</div>
</div>
<div class="post-date">
<span class="day">24</span>
<span class="month">Jul</span>
</div>
<div class="post-content">
<h2>Powershell script to auto connect to your VPN on startup</h2>
<div class="post-meta">
<span><i class="fa fa-user"></i> Written by <a href="https://www.magnumvpn.com/author/neil-proctor.html">Neil Proctor</a> </span>
<span><i class="fa fa-tag"></i> in <a href="https://www.magnumvpn.com/category/windows-10.html">Windows 10</a> on Mon 24 July 2017. Tags: <a href="https://www.magnumvpn.com/tag/vpn.html">vpn</a>, <a href="https://www.magnumvpn.com/tag/win10.html">win10</a>, <a href="https://www.magnumvpn.com/tag/powershell.html">powershell</a>, <a href="https://www.magnumvpn.com/tag/startup.html">startup</a>, </span>
<span><i class="fa fa-comments"></i> <a href="https://www.magnumvpn.com/powershell_auto_connect_vpn.html#isso-thread" data-isso-id="powershell_auto_connect_vpn">Comments</a></span>
</div>
<p>This guide will show you how to connect to a VPN on startup and how to run a script that will automatically reconnect to that VPN even if there is a service disconnection. If you already have a VPN setup in Windows great! Otherwise checkout this guide on <a href="/setup-vpn-windows-10-l2tp-ipsec.html">how to setup a L2TP/IPSEC VPN on Windows</a>. </p>
<p>Powershell and Rasdial.exe make it easy to automate your Windows 10 VPN connection.</p>
<h2>Steps for adding a Powershell script to auto connect to your VPN on startup</h2>
<ol>
<li>
<p>Setup your VPN in Windows<br>
Hopefully you have already setup your VPN connection, if not you can follow this guide on <a href="/setup-vpn-windows-10-l2tp-ipsec.html">how to setup a L2TP/IPSEC VPN on Windows</a>. You will need the <em>'Name'</em> of this VPN connection as well as the credentials in the next steps.<br>
<img alt="VPN Name" class="img-responsive" src="/img/blog/powershell_auto_connect_vpn/name.png" title="VPN Name"> </p>
</li>
<li>
<p>Save this powershell script as <strong>'autovpn.ps1'</strong> and replace the values for <em>$vpnname</em>, <em>$vpnusername</em>, and <em>$vpnpassword</em><br>
<code>while ($true)
{
$vpnname = "YOURVPNCONNECTIONNAME"
$vpnusername = "YOURUSERNAME"
$vpnpassword = "YOURPASSWORD"
$vpn = Get-VpnConnection | where {$_.Name -eq $vpnname}
if ($vpn.ConnectionStatus -eq "Disconnected")
{
$cmd = $env:WINDIR + "\System32\rasdial.exe"
$expression = "$cmd ""$vpnname"" $vpnusername $vpnpassword"
Invoke-Expression -Command $expression
}
start-sleep -seconds 30
}</code><br>
This script will check your VPN status every 30 seconds, and if the status is disconnected, it will use the windows remote access dialer utillity (Rasdial.exe) to reconnect your VPN. </p>
</li>
<li>
<p>Create a .bat file and store it in the all users common startup folder<br>
In order to have this script run when a user logs in, save the following as a batch file <strong>'startvpn.bat'</strong> located in <strong>'C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp'</strong> ; Make sure to change the path to point to the location where you stored the Powershell script from step 2
<code>powershell.exe -executionpolicy bypass -windowstyle hidden -noninteractive -nologo -file "C:\PATHTOYOURPOWERSHELLSCRIPT\autovpn.ps1"</code>
This special line in the batch file is needed because most systems have their Powershell ExecutionPolicy set to restricted, and this line in the the batch file set the parameters to intentionally bypass that restriction for this particular powershell script. </p>
</li>
<li>
<p>Congratulations! You can now double click on that startvpn.bat file and you will always be connected to your VPN. Any users on this system will also always be connected to the VPN as well. </p>
</li>
</ol>
<!--
<div class="post-block post-share">
<h3 class="heading-primary"><i class="fa fa-share"></i>Share this post</h3>
<!- - AddThis Button BEGIN - ->
<div class="addthis_toolbox addthis_default_style ">
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
<a class="addthis_button_tweet"></a>
<a class="addthis_button_pinterest_pinit"></a>
<a class="addthis_counter addthis_pill_style"></a>
</div>
<!- - replace with sharrif to maintain privacy
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=xa-50faf75173aadc53"></script>
- ->
<!- - AddThis Button END - ->
</div>
-->
<div class="post-block post-author clearfix">
<h3 class="heading-primary"><i class="fa fa-user"></i>Author</h3>
<div class="img-thumbnail">
<a href="https://www.magnumvpn.com/author/neil-proctor.html">
<img src="/img/avatars/neilgreenjacket.jpg" alt="">
</a>
</div>
<p><strong class="name"><a href="https://www.magnumvpn.com/author/neil-proctor.html">Neil Proctor</a></strong></p>
<p>Neil Proctor is a privacy advocate and the co-founder of Prompt Engineering, a start-up engineering consulting firm based in Arizona. Prior to Prompt Engineering, Neil worked for GoDaddy for 13 years, he is a proven leader in nework security and web development. From GoDaddy’s early days to IPO, Neil lead web application development, information security architecture, and was General Manager for the community division and Business Unit Manager for the marketing applications product suite. His passion for product development with emphasis on application and network security has prompted him to apply his talents creating VPN guides for others and publishing them on MagnumVPN.</p>
</div>
<div class="post-block post-comments clearfix">
<ul class="comments">
<section data-title="Yay!" data-isso-id="powershell_auto_connect_vpn" id="isso-thread"></section>
</ul>
</div>
</div>
</article>
</div>
</div>
<div class="col-md-3"> <aside class="sidebar">
<!--
<form>
<div class="input-group input-group-lg">
<input class="form-control" placeholder="Search..." name="s" id="s" type="text">
<span class="input-group-btn">
<button type="submit" class="btn btn-primary btn-lg"><i class="fa fa-search"></i></button>
</span>
</div>
</form>
<hr>
-->
<h4 class="heading-primary">Categories</h4>
<ul class="nav nav-list mb-xlg">
<li ><a href="https://www.magnumvpn.com/category/android.html">Android (1)</a></li>
<ul>
<li ><a href="https://www.magnumvpn.com/setup-vpn-android-l2tp-ipsec.html">How to Setup VPN on Android L2TP/IPSec (7.0 Nougat)</a></li>
</ul>
</li>
<li ><a href="https://www.magnumvpn.com/category/blog.html">Blog (1)</a></li>
<ul>
<li ><a href="https://www.magnumvpn.com/vpn-providers.html">10 criteria to choose a VPN Provider</a></li>
</ul>
</li>
<li ><a href="https://www.magnumvpn.com/category/faq.html">FAQ (2)</a></li>
<ul>
<li ><a href="https://www.magnumvpn.com/why-do-i-need-a-vpn.html">Why do I need a VPN?</a></li>
<li ><a href="https://www.magnumvpn.com/how-to-view-cookies-in-chrome.html">How to view cookies in Chrome</a></li>
</ul>
</li>
<li class="active" ><a href="https://www.magnumvpn.com/category/windows-10.html">Windows 10 (3)</a></li>
<ul>
<li class="active" ><a href="https://www.magnumvpn.com/powershell_auto_connect_vpn.html">Powershell script to auto connect to your VPN on startup</a></li>
<li ><a href="https://www.magnumvpn.com/setup-windows-10-firewall-l2tp.html">How to Setup Windows 10 Firewall for L2TP/IPSec</a></li>
<li ><a href="https://www.magnumvpn.com/setup-vpn-windows-10-l2tp-ipsec.html">How to Setup VPN on Windows 10 L2TP/IPSec</a></li>
</ul>
</li>
</ul>
<div class="tabs mb-xlg">
<ul class="nav nav-tabs">
<li class="active"><a href="#popularPosts" data-toggle="tab"><i class="fa fa-star"></i> Popular</a></li>
<li><a href="#recentPosts" data-toggle="tab">Recent</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="popularPosts">
<ul class="simple-post-list">
<li>
<div class="post-image">
<div class="img-thumbnail">
<a href="https://www.magnumvpn.com/vpn-providers.html">
<img src="/img/blog/vpn-providers/choice_50x50.png" alt="">
</a>
</div>
</div>
<div class="post-info">
<a href="https://www.magnumvpn.com/vpn-providers.html">10 criteria to choose a VPN Provider</a>
<div class="post-meta">
Sep 11, 2017
</div>
</div>
</li>
<li>
<div class="post-image">
<div class="img-thumbnail">
<a href="https://www.magnumvpn.com/setup-vpn-windows-10-l2tp-ipsec.html">
<img src="/img/blog/setup-vpn-windows-10-l2tp-ipsec/l2tp-win10-only_50x50.png" alt="">
</a>
</div>
</div>
<div class="post-info">
<a href="https://www.magnumvpn.com/setup-vpn-windows-10-l2tp-ipsec.html">How to Setup VPN on Windows 10 L2TP/IPSec</a>
<div class="post-meta">
Jun 15, 2017
</div>
</div>
</li>
</ul>
</div>
<div class="tab-pane" id="recentPosts">
<ul class="simple-post-list">
<li>
<div class="post-image">
<div class="img-thumbnail">
<a href="https://www.magnumvpn.com/why-do-i-need-a-vpn.html">
<img src="/img/blog/why-do-i-need-a-vpn/why_50x50.png" alt="">
</a>
</div>
</div>
<div class="post-info">
<a href="https://www.magnumvpn.com/why-do-i-need-a-vpn.html">Why do I need a VPN?</a>
<div class="post-meta">
Sep 23, 2017
</div>
</div>
</li>
<li>
<div class="post-image">
<div class="img-thumbnail">
<a href="https://www.magnumvpn.com/how-to-view-cookies-in-chrome.html">
<img src="/img/blog/how-to-view-cookies-in-chrome/cookie_50x50.png" alt="">
</a>
</div>
</div>
<div class="post-info">
<a href="https://www.magnumvpn.com/how-to-view-cookies-in-chrome.html">How to view cookies in Chrome</a>
<div class="post-meta">
Sep 21, 2017
</div>
</div>
</li>
<li>
<div class="post-image">
<div class="img-thumbnail">
<a href="https://www.magnumvpn.com/vpn-providers.html">
<img src="/img/blog/vpn-providers/choice_50x50.png" alt="">
</a>
</div>
</div>
<div class="post-info">
<a href="https://www.magnumvpn.com/vpn-providers.html">10 criteria to choose a VPN Provider</a>
<div class="post-meta">
Sep 11, 2017
</div>
</div>
</li>
<li>
<div class="post-image">
<div class="img-thumbnail">
<a href="https://www.magnumvpn.com/powershell_auto_connect_vpn.html">
<img src="/img/blog/powershell_auto_connect_vpn/powershell_auto_50x50.png" alt="">
</a>
</div>
</div>
<div class="post-info">
<a href="https://www.magnumvpn.com/powershell_auto_connect_vpn.html">Powershell script to auto connect to your VPN on startup</a>
<div class="post-meta">
Jul 24, 2017
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
<hr>
<h4 class="heading-primary">About Us</h4>
<p>We are VPN experts with a passion for privacy, with all the choices and options available to protect your privacy we have curated the best. We are an affiliate partner with VPN.ac, they have the best service we have tested so far and we are part of their referral network.</p>
</aside></div>
</div>
</div>
</div>
<footer id="footer">
<div class="container">
<div class="row">
<div class="footer-ribbon">
<span>Get in Touch</span>
</div>
<div class="col-md-3">
<div class="newsletter">
<h4>Newsletter</h4>
<p>Keep up on our always evolving product features and technology. Enter your e-mail and subscribe to our newsletter.</p>
<div class="alert alert-success hidden" id="newsletterSuccess">
<strong>Success!</strong> You've been added to our email list.
</div>
<div class="alert alert-danger hidden" id="newsletterError"></div>
<form id="newsletterForm" action="php/newsletter-subscribe.php" method="POST">
<div class="input-group">
<input class="form-control" placeholder="Email Address" name="newsletterEmail" id="newsletterEmail" type="text">
<span class="input-group-btn">
<button class="btn btn-default" type="submit">Go!</button>
</span>
</div>
</form>
</div>
</div>
<div class="col-md-3">
<h4>Latest News</h4>
<div id="tweet" class="twitter manual" data-plugin-tweets data-plugin-options="{'username': '', 'count': 2}">
<a class="twitter-timeline" data-height="400" data-theme="dark" href="http://twitter.com/MagnumVPN">Tweets by MagnumVPN</a>
</div>
</div>
<div class="col-md-4">
<div class="contact-details">
<h4>Contact Us</h4>
<ul class="contact">
<li><p><i class="fa fa-map-marker"></i> <strong>Address:</strong> Arizona, USA</p></li>
<li><p><i class="fa fa-phone"></i> <strong>Phone:</strong> <a href="tel:+14808004763">(480) 800-4763</a></p></li>
<li><p><i class="fa fa-envelope"></i> <strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a></p></li>
</ul>
</div>
</div>
<div class="col-md-2">
<h4>Follow Us</h4>
<ul class="social-icons">
<!-- <li class="social-icons-facebook"><a href="https://www.facebook.com/MagnumVPN/" target="_blank" title="Facebook"><i class="fa fa-facebook"></i></a></li> -->
<li class="social-icons-twitter"><a href="http://twitter.com/MagnumVPN" target="_blank" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<!-- <li class="social-icons-linkedin"><a href="http://www.linkedin.com/" target="_blank" title="Linkedin"><i class="fa fa-linkedin"></i></a></li> -->
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
<div class="row">
<div class="col-md-2">
<a href="https://www.magnumvpn.com/index.html" class="logo">
<img alt="MagnumVPN Logo" src="/img/logos/png/white_logo_color_background_centercut_very_small_060606.png">
</a>
</div>
<div class="col-md-6">
<p>© Copyright 2017. All Rights Reserved.</p>
</div>
<div class="col-md-4">
<nav id="sub-menu">
<ul>
<li><a href="https://vpn.ac/aff.php?aff=933">FAQ's</a></li>
<li><a href="https://www.magnumvpn.com/sitemap.html">Sitemap</a></li>
<li><a href="https://www.magnumvpn.com/contact-us.html">Contact</a></li>
<li><a href="https://www.magnumvpn.com/privacy_policy.html">Privacy Policy</a></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</footer> </div>
<!-- Vendor -->
<script src="/vendor/jquery/jquery.min.js"></script>
<script src="/vendor/jquery.appear/jquery.appear.min.js"></script>
<script src="/vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="/vendor/jquery-cookie/jquery-cookie.min.js"></script>
<script src="/vendor/bootstrap/js/bootstrap.min.js"></script>
<script src="/vendor/common/common.min.js"></script>
<script src="/vendor/jquery.validation/jquery.validation.min.js"></script>
<script src="/vendor/jquery.easy-pie-chart/jquery.easy-pie-chart.min.js"></script>
<script src="/vendor/jquery.gmap/jquery.gmap.min.js"></script>
<script src="/vendor/jquery.lazyload/jquery.lazyload.min.js"></script>
<script src="/vendor/isotope/jquery.isotope.min.js"></script>
<script src="/vendor/owl.carousel/owl.carousel.min.js"></script>
<script src="/vendor/magnific-popup/jquery.magnific-popup.min.js"></script>
<script src="/vendor/vide/vide.min.js"></script>
<!-- Theme Base, Components and Settings -->
<script src="/js/theme.js"></script>
<!-- Current Page Vendor and Views -->
<script src="/vendor/rs-plugin/js/jquery.themepunch.tools.min.js"></script>
<script src="/vendor/rs-plugin/js/jquery.themepunch.revolution.min.js"></script>
<script src="/vendor/circle-flip-slideshow/js/jquery.flipshow.min.js"></script>
<script src="/js/views/view.home.js"></script>
<!-- Theme Custom -->
<!--<script src="/js/custom.js"></script>-->
<!-- Theme Initialization Files -->
<script src="/js/theme.init.js"></script>
<script data-isso="https://stats.magnumvpn.com/isso/"
data-isso-css="false"
data-isso-lang="en"
data-isso-reply-to-self="false"
data-isso-require-author="false"
data-isso-require-email="false"
data-isso-max-comments-top="10"
data-isso-max-comments-nested="1"
data-isso-reveal-on-click="5"
data-isso-avatar="true"
data-isso-avatar-bg="#f0f0f0"
data-isso-avatar-fg="#9abf88 #5698c4 #e279a3 #9163b6 ..."
data-isso-vote="false"
data-vote-levels=""
src="//stats.magnumvpn.com/isso/js/embed.dev.js"></script>
</body>
</html>