windows 默认Web服务框架复杂,想要停止用很难,以下是快速禁用的方法
- 禁用HTTP服务执行以下命令
net stop http
Sc config http start= disabled
注:如何恢复使用IIS: Sc config http start= auto
- 禁用 SQL Server Reporting Services (MSSQLSERVER)服务
- 禁用或卸载World Wid Web Publishing Service服务
查看80端口是否还被占用
:: 查看占用端口
netstat –ano | find "80"
:: 启动HTTP服务
sc config http start= demand & net start http