Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save theankitgaurav/5b9abb30be4fbb3b91e3c19d448963cd to your computer and use it in GitHub Desktop.
Save theankitgaurav/5b9abb30be4fbb3b91e3c19d448963cd to your computer and use it in GitHub Desktop.
NativeScript quick setup for windows cmd
To quickly set up your system for the latest NativeScript CLI, paste the following PowerShell script in the Command Prompt and hit Enter:
===========================================================================================================================
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://www.nativescript.org/setup/win'))"
Alternatively, your can paste the following PowerShell setup script in a Windows PowerShell console and hit Enter:
======================================================================================================================
start-process -FilePath PowerShell.exe -Verb Runas -Wait -ArgumentList "-NoProfile -ExecutionPolicy Bypass -Command iex ((new-object net.webclient).DownloadString('https://www.nativescript.org/setup/win'))"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment