Friday, May 22, 2020

Windows10 # VS2017 # Unable to launch the IIS Express Web server

Problem Statement : Windows 10 # VS 2017 # Unable to launch the IIS Express Web server

Solution:

Run the following command from an administrator command prompt: 
netsh http add iplisten ipaddress=::

Example: 
C:\Users\Admin>netsh http add iplisten ipaddress=::
IP address successfully added

This worked for me for Windows 10, VS 2017

No comments:

VS Code # Warning - npm WARN config global `--global`, `--local` are deprecated. Use `--location=global` instead

Error : VS Code - NPM Warning - npm WARN config global `--global`, `--local` are deprecated. Use `--location=global` instead Solution:  Foll...