我正在使用IIS 6.0并寻找停止/启动应用程序池的方法。我知道在7.0版本中有一个用于powershell的stop-appPool但是使用6.0。 :-(那么有没有人有一个powershell脚本或另一个命令行exe将停止/启动应用程序池?
感谢。
答案 0 :(得分:7)
好的就是,我只是添加了一个开关来停止应用程序池,否则启动它,因为启动已启动的应用程序池没有任何损害:
param([string]$appPoolName, [switch]$stop)
$appPool = get-wmiobject -namespace "root\MicrosoftIISv2" -class "IIsApplicationPool" | where-object {$_.Name -eq "W3SVC/AppPools/$appPoolName"}
if($appPool)
{
if($stop)
{
$appPool.Stop()
}
else
{
$appPool.Start()
}
}
答案 1 :(得分:4)
如果有人正在寻找一个不需要Powershell的纯命令行工具,我会根据这些其他答案中包含的信息created such a thing。由于最初的问题是专门寻找可能的命令行替代方案,我想我会在这里分享它。
用法非常简单:
IIS6AppPool Start DefaultAppPool
IIS6AppPool Stop AppPool #1
IIS6AppPool Recycle Some other app pool
bitbucket上提供了
答案 2 :(得分:2)
您可能对我开始维护的Powershell库感兴趣:
psDeploy :http://rprieto.github.com/psDeploy/
除此之外,它还有许多用于IIS6自动化的cmdlet,例如 Start-IIS6AppPool , New-IIS6Website ......
我希望它有所帮助!
答案 3 :(得分:2)
如果在Windows Server 2003上使用提供的脚本iisapp.vbs
更简单CScript.exe C:\WINDOWS\system32\iisapp.vbs /?
CScript.exe C:\WINDOWS\system32\iisapp.vbs /a MyApp /r
或者取决于你的设置(默认为Cscript而不是WScript),只需
iisapp /a MyApp /r
当然,IIS7
有所不同答案 4 :(得分:1)
如果您希望远程执行此操作,和/或在没有PowerShell的计算机上执行此操作,则可以修改已发布的脚本here。
它使用WMI从VBScript访问和回收应用程序池。让它停止/启动池而不是回收它是一个微不足道的变化,你只需要在相关的应用程序池上调用.Stop
或.Start
。
脚本的内容在下面解释:
strServer = "LocalHost" 'Server name goes here
strAppPoolName = "MyAppPool" 'App pool name goes here
'Connect to the specified server using WMI
set Locator = CreateObject("WbemScripting.SWbemLocator")
Locator.Security_.AuthenticationLevel = 6
set Service = locator.connectserver(strServer,"root/MicrosoftIISv2")
'Get a collection of WMI apppools
set APCollection = Service.InstancesOf("IISApplicationPool")
For each APInstance in APCollection
If UCase(ApInstance.Name) = UCase("W3SVC/AppPools/" & strAppPoolName) Then
WScript.Echo "Recycling " & strServer & "/" & APInstance.Name
' You can do any of these things depending you what you want to do.
APInstance.Recycle
APInstance.Stop
APInstance.Start
End If
Next
如果您想要将其集成到某种命令行/批处理工具链中,可以通过调用以下命令行模式执行VBScript文件:
CScript.exe \NoLogo MyScriptFile.vbs
\ NoLogo开关删除了VBScript解释器启动消息,并使用CScript.exe运行它意味着对WScript.Echo
的调用转到命令行而不是弹出窗口。
答案 5 :(得分:0)
您可以创建一个远程停止或启动应用程序池的功能,如下所示:
function StopOrStartAppPool($RemoteServerName, $AppPoolName, $commandWebPool)
{
if ($commandWebPool -eq "Stop")
{
$wmiprocess = [wmiclass]"\\$RemoteServerName\root\cimv2:win32_process"
$wmiprocess.create("cscript.exe C:\Inetpub\AdminScripts\adsutil.vbs STOP_SERVER W3SVC/AppPools/$AppPoolName -s:$RemoteServerName")
}
else
{
$wmiprocess = [wmiclass] "\\$RemoteServerName\root\cimv2:win32_process"
$wmiprocess.create("cscript.exe C:\Inetpub\AdminScripts\adsutil.vbs START_SERVER W3SVC/AppPools/$AppPoolName -s:$RemoteServerName")
}
}