Set up a web development environment on Windows.
Included tools:
- PowerShell 5.0 or higher
First, you must change execution policy for PowerShell. Run PowerShell as Administrator and call:
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force
To install dev tools, run PowerShell as Administrator and call:
iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/yethee/denv/master/setup.ps1'))