Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IISExpress User Interface [closed]

I have just downloaded and installed IIS express and it all works well running it from the command line:

But how do i configure options for it, is there a standalone windows interface for it like IIS Manager or do you have do do everything manually in the config files? Or do you have to install webmatrix to configure it?

like image 786
user575575 Avatar asked Jan 14 '11 11:01

user575575


People also ask

How do I disable IISExpress?

Closing IIS Express By default Visual Studio places the IISExpress icon in your system tray at the lower right hand side of your screen, by the clock. You can right click it and choose exit. If you don't see the icon, try clicking the small arrow to view the full list of icons in the system tray.

How do I get IIS Express in Visual Studio 2022?

Enable development-time IIS support in Visual StudioLaunch the Visual Studio installer. Select Modify for the Visual Studio installation that you plan to use for IIS development-time support. For the ASP.NET and web development workload, locate and install the Development time IIS support component.


1 Answers

IIS Express is a lightweight version of IIS and it doesn't ship with the the admin UI tool like IIS Manager. You could install WebMatrix, but it only allows you to configure few settings (binding, default documents, SSL). The options you have today:

  1. you can use appcmd.exe command line tool that can be found in the installation directory of IIS Express under the "Program Files". Majority of appcmd snippets from the IIS Configuration Reference located on http://www.iis.net/ConfigReference/ would work
  2. if you use Visual Studio, then you should be able to open %userprofile%\documents\IISExpress\config\applicationhost.config or your application's web.config and use intellisense to edit IIS configuration settings
like image 69
Jaro Dunajsky Avatar answered Nov 04 '22 02:11

Jaro Dunajsky