扫二维码与项目经理沟通
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流
C#中怎么调用iisapp.vbs,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
成都创新互联公司基于成都重庆香港及美国等地区分布式IDC机房数据中心构建的电信大带宽,联通大带宽,移动大带宽,多线BGP大带宽租用,是为众多客户提供专业服务器托管报价,主机托管价格性价比高,为金融证券行业服务器托管,ai人工智能服务器托管提供bgp线路100M独享,G口带宽及机柜租用的专业成都idc公司。
C#调用iisapp.vbs代码:
usingSystem;
usingSystem.Text;
usingSystem.Text.RegularExpressions;
usingSystem.Diagnostics;
usingSystem.Management;
usingSystem.Windows.Forms;
namespaceTextConvertor
{
/**////
///W3wp的摘要说明。
///
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问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注创新互联行业资讯频道了解更多相关知识。
我们在微信上24小时期待你的声音
解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流