Skip to content

Commit

Permalink
Merge pull request #422 from pauby/update-web-install-instructions
Browse files Browse the repository at this point in the history
(GH-419) Update web install instructions to allow for TLS 1.2
  • Loading branch information
gep13 authored Aug 7, 2020
2 parents 981e114 + d53b137 commit ee6f207
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions Web/InstallBoxstarter.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,9 @@ CINST Boxstarter
<p>After Boxstarter is installed, a new PowerShell console must be opened before you can load the modules and run its commands. For convenience you can use the <a href="/UsingBoxstarter">Boxstarter Shell</a> for running Boxstarter commands which is the easiest way to ensure that all Boxstarter modules are properly loaded regardless of the version of Windows and PowerShell you are running.</p>

<h3>Installing from the web</h3>
<p>If you are running PowerShell v3 or higher:</p>
<p>Run the following command from PowerShell:</p>
<pre>
. { iwr -useb https://boxstarter.org/bootstrapper.ps1 } | iex; Get-Boxstarter -Force
</pre>

<p/><p/>
<p>If you are running PowerShell v2:</p>
<pre>
iex ((New-Object System.Net.WebClient).DownloadString('https://boxstarter.org/bootstrapper.ps1')); Get-Boxstarter -Force
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://boxstarter.org/bootstrapper.ps1')); Get-Boxstarter -Force
</pre>

<h2>Uninstalling Boxstarter</h2>
Expand Down

0 comments on commit ee6f207

Please sign in to comment.