How do I start IIS Express?

前端 未结 7 656
傲寒
傲寒 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:25

    Use Vb.net 2010

    and put this on a button

    this will execute the IIS Express console less

    shell("C:\Program files\IIS Express\iisexpress", vbhide)

    To kill the process

    *this will kill the IIS Express *

    shell("taskkill /f /im iisexpress.exe", vbhide)

提交回复
热议问题