使用Powershell在IIS中设置网站的应用程序池

时间:2013-01-09 15:08:55

标签: iis powershell application-pool

我需要一个Powershell命令,它相当于在IIS中添加网站,但是需要“应用程序池”的绑定:

enter image description here

到目前为止,我可以添加一个网站:

New-Item iis:\Sites\swmarket -bindings @{protocol="http";bindingInformation="80:swmarket"} -physicalPath c:\inetpub\wwwroot

但我不知道如何在新网站中设置“应用程序池”。有什么方法可以看到所有的绑定吗?

1 个答案:

答案 0 :(得分:8)

Set-ItemProperty iis:\Sites\swmarket -Name applicationpool -Value swmarket

或者,使用Powershell 3,你可以这样做:

New-WebAppPool -Name $WebSiteName
New-Website -Name $WebSiteName -ApplicationPool $WebSiteName -HostHeader $WebSiteName -PhysicalPath $PathInfo -Port 80
Set-Content $PathInfo\default.htm “PSCreated Default Page”

查看MS Technet说明here.