Articles → .NET → ASP.NET Configuration Through Command Prompt
ASP.NET Configuration Through Command Prompt
Step 1
- Search IISExpress.exe in your system. I got it at following location c:\program file (X86)\IISExpress (as I have 64-bit system)
- Open command prompt
- Execute following command
iisexpress.exe /path:c:\windows\Microsoft.NET\Framework\v4.0.30319\ASP.NETWebAdminFiles /vpath:"/asp.netwebadminfiles" /port:8089 /clr:4.0 /ntlm
| Parameter | Description |
|---|
| Path | The physical path of the application to run. |
| Port | The port number that application is using. |
| Clr | .net framework version. |
| NTLM | NT LAN Manager for authentication. |
Click to Enlarge
Step 2
http://localhost:8089/asp.netwebadminfiles/default.aspx?applicationPhysicalPath=[Application Path]\SpellCheck\&applicationUrl=/
Click to Enlarge
| Posted By - | Karan Gupta |
| |
| Posted On - | Tuesday, June 2, 2015 |