如何远程重启IIS7应用程序池
请注意,源计算机和目标计算机在Windows 2008 Server R2中运行IIS7,因此必须使用Powershell。
谢谢!
答案 0 :(得分:2)
从远程计算机上,您需要运行以下命令来重新启动IIS7应用程序池:
Invoke-Command -ComputerName "webserver_computerName" -Credential $credentials_from_last_step -ScriptBlock { Add-PSSnapin WebAdministration; Restart-WebItem 'IIS:\AppPools\DefaultAppPool' }
请使用此link,它可以帮助您使用PowerShell远程控制IIS7。
有关Restart-WebItem的更多信息是here:
Restart-WebItem =>重新启动应用程序池或网站。