From 685c5b365063f981a4f3eb826a1242d9a43e2d3d Mon Sep 17 00:00:00 2001 From: Josh Tamayo Date: Tue, 4 Apr 2017 16:54:44 -0400 Subject: [PATCH] Formatting updates Cleaned up capitalization and spacing errors, as well as improved wording a bit. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 60cd4f2e..1805125a 100644 --- a/README.md +++ b/README.md @@ -101,11 +101,12 @@ You need to install the [strongSwan VPN Client for Android 4 and newer](https:// ### Windows -Copy the CA certificate, user certificate, and the user PowerShell script to the client computer. Import the CA certificate to the local machine Trusted Root certificate store. Then, run the included PowerShell script to import the user certificate, set up a VPN connection, and activate stronger ciphers on it. The powershell script has to be run as administrator, so first open Powershell as Administrator. Additionally, if you have never used powershell before, you will need to change the Execution Policy to allow unsigned scripts to run. Execute the following command in Powershell to do so. +Copy the CA certificate, user certificate, and the user PowerShell script to the client computer. Import the CA certificate to the local machine Trusted Root certificate store. Then, run the included PowerShell script to import the user certificate, set up a VPN connection, and activate stronger ciphers on it. +The PowerShell script has to be run as Administrator, so first open Powershell as Administrator, then navigate to your copied files. If you have never used PowerShell before, you will need to change the Execution Policy to allow unsigned scripts to run. Execute the following command in PowerShell to do so. ```powershell Set-ExecutionPolicy Unrestricted -Scope CurrentUser ``` -For local machine security, revert the change after you run the script with the following. +After you execute the user script remember to revert the policy change before you close the PowerShell window. ```powershell Set-ExecutionPolicy Restricted -Scope CurrentUser ```