本文介绍了哪个w3wp.exe进程属于IIS6中的哪个应用程序池(带有Powershell)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
到目前为止,我使用此工具来判断哪个w3wp属于哪个应用程序池
to date, I use this tool to tell which w3wp belongs to which App Pool
c:\windows\system32\cscript iisapp.vbs
如何使用Powershell提取相同的信息?或者,也许会有更多有用的结果.
How can I extract the same information with Powershell?Or maybe, with more informative results.
谢谢:)
推荐答案
这绝不是唯一的方法,但这是我使用的一种方法.这是针对PS v1的,可以针对V2优化一些代码.
This is by no means the only approach, but here is one I use. This is for PS v1, some code can be optimized for V2.
function get-apppools{
[regex]$pattern="-ap ""(.+)"""
gwmi win32_process -filter 'name="w3wp.exe"' | % {
$name=$_.name
$cmd = $pattern.Match($_.commandline).Groups[1].Value
$procid = $_.ProcessId
New-Object psobject | Add-Member -MemberType noteproperty -PassThru Name $name |
Add-Member -MemberType noteproperty -PassThru AppPoolID $cmd |
Add-Member -MemberType noteproperty -PassThru PID $procid
}
}
这将输出:
PS C:\Documents and Settings\jpogran> get-apppools
Name AppPoolID PID
---- --------- ---
w3wp.exe SharePoint - 9090 6988
w3wp.exe SharePoint - 80 6364
w3wp.exe foo.bar.net 4720
w3wp.exe SharePoint Central Administration v3 7960
w3wp.exe SharePoint - 8181 7756
iisapp脚本显示如下:
The iisapp script shows this:
PS C:\Documents and Settings\jpogran> iisapp
Microsoft (R) Windows Script Host Version 5.6
Copyright (C) Microsoft Corporation 1996-2001. All rights reserved.
W3WP.exe PID: 6988 AppPoolId: SharePoint - 9090
W3WP.exe PID: 6364 AppPoolId: SharePoint - 80
W3WP.exe PID: 4720 AppPoolId: foo.bar.net
W3WP.exe PID: 7960 AppPoolId: SharePoint Central Administration v3
W3WP.exe PID: 7756 AppPoolId: SharePoint - 8181
PS C:\Documents and Settings\jpogran>
这篇关于哪个w3wp.exe进程属于IIS6中的哪个应用程序池(带有Powershell)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!