How do I start IIS Express?

前端 未结 7 647
傲寒
傲寒 2020-12-25 14:04

I\'ve used the Web PI to install IIS Express. In the tray, there is not the IIS Express icon. How do I start IIS Express without using the command line? I want that IIS runs

相关标签:
7条回答
  • 2020-12-25 14:43

    IIS Express isn't really meant to be run without some kind of interaction with it - Visual Studio, WebMatrix, or other. IIS Express isn't a service.

    If you wanted to automate its startup in Windows, you can do so via Startup directory, or add a new item to the registry key HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run

    C:\Program Files (x86)\IIS Express\iisexpress.exe
    

    You could run this executable ad-hoc if you like, perhaps create a shortcut on your quicklaunch or desktop or other.

    0 讨论(0)
提交回复
热议问题