## set powershell executing policy
Set-ExecutionPolicy Remotesign -Force
Original link
http://boxstarter.org/Learn/WebLauncher
## Step 3
### Install the Boxstarter Modules
You can download the Boxstarter module installer from this web site or you can use Chocolatey to install the Boxstarter. Alternatively, you may invoke the module installer over the web using powershell.
If you are running powershell v3 or higher:
```
. { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
If you are running powershell v2:
```
```
iex ((New-Object System.Net.WebClient).DownloadString('http://boxstarter.org/bootstrapper.ps1')); get-boxstarter -Force
```
This will install Chocolatey if necessary and then install the necessary boxstarter modules.
## Step 4
### Run the script
```
Install-BoxstarterPackage -PackgeName https://gist.github.com/mwrock/7382880/raw/f6525387b4b524b8eccef6ed4d5ec219c82c0ac7/gistfile1.txt -DisableReboots
```
----------
### Chocolatey_full.ps1
```
Install-BoxstarterPackage -PackgeName https://gist.githubusercontent.com/alantsai/9857c1a3374baebafb90/raw/531396cf998f9297cc8e863452ffa285ec71fc53/chocolatey_full.ps1 -DisableReboots
```
### Chocolatey_essential.ps1
```
Install-BoxstarterPackage -PackgeName https://gist.githubusercontent.com/alantsai/9857c1a3374baebafb90/raw/4a1d4d8ebedb423e19603b92ab0302ab27bd60b0/chocolatey_essential.ps1 -DisableReboots
```