Skip to content
This repository has been archived by the owner on Nov 17, 2022. It is now read-only.

update chocolatey windows install command #1878

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/start/ns-setup-win.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Complete the following steps to set up NativeScript on your Windows development
- Run the command prompt as an Administrator.
- Copy and paste the following script in the command prompt.

<pre class="add-copy-button"><code class="language-terminal">@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
<pre class="add-copy-button"><code class="language-terminal">Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
</code></pre>
- Restart the command prompt.

Expand Down