How to start IIS Express Manually

后端 未结 5 1295
隐瞒了意图╮
隐瞒了意图╮ 2020-12-04 23:00

Is there a command line program or service that I can use to start IIS Express manually?

5条回答
  •  不思量自难忘°
    2020-12-04 23:45

    From the links the others have posted, I'm not seeing an option. -- I just use powershell to kill it -- you can save this to a Stop-IisExpress.ps1 file:

    get-process | where { $_.ProcessName -like "IISExpress" } | stop-process
    

    There's no harm in it -- Visual Studio will just pop a new one up when it wants one.

提交回复
热议问题