C#中怎么调用iisapp.vbs,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
C#调用iisapp.vbs代码:
usingSystem;
usingSystem.Text;
usingSystem.Text.RegularExpressions;
usingSystem.Diagnostics;
usingSystem.Management;
usingSystem.Windows.Forms;
namespaceTextConvertor
{
///<summary>
///W3wp的摘要说明。
///</summary>
publicclassW3wp
{
privateW3wp(){}
publicstaticstringGetAllW3wp(stringinput)
{
ObjectQueryoQuery=newObjectQuery
("select*fromWin32_ProcesswhereName='w3wp.exe'");
ManagementObjectSearcheroSearcher=newManagementObjectSearcher(oQuery);
ManagementObjectCollectionoReturnCollection=oSearcher.Get();
stringpid;
stringcmdLine;
StringBuildersb=newStringBuilder();
foreach(ManagementObjectoReturninoReturnCollection)
{
pid=oReturn.GetPropertyValue("ProcessId").ToString();
cmdLine=(string)oReturn.GetPropertyValue("CommandLine");
stringpattern="-ap\"(.*)\"";
Regexregex=newRegex(pattern,RegexOptions.IgnoreCase);
Matchmatch=regex.Match(cmdLine);
stringappPoolName=match.Groups[1].ToString();
sb.AppendFormat("W3WP.exePID:{0}AppPoolId:{1}\r\n",pid,appPoolName);
}
returnsb.ToString();
}
}
}
关于C#中怎么调用iisapp.vbs问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注编程网行业资讯频道了解更多相关知识。