<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Rich&#039;s Blog</title>
	<atom:link href="http://www.techish.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techish.net</link>
	<description>The stuff I get myself into...</description>
	<lastBuildDate>Thu, 02 Feb 2012 20:17:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Get Process CPU Usage Using WMI by Nehemoth</title>
		<link>http://www.techish.net/2009/03/get-process-cpu-usage-using-wmi/#comment-678</link>
		<dc:creator>Nehemoth</dc:creator>
		<pubDate>Thu, 02 Feb 2012 20:17:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.techish.net/?p=83#comment-678</guid>
		<description>From the command line first then I will use a batch file</description>
		<content:encoded><![CDATA[<p>From the command line first then I will use a batch file</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Get Process CPU Usage Using WMI by Rich Kreider</title>
		<link>http://www.techish.net/2009/03/get-process-cpu-usage-using-wmi/#comment-677</link>
		<dc:creator>Rich Kreider</dc:creator>
		<pubDate>Thu, 02 Feb 2012 19:57:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.techish.net/?p=83#comment-677</guid>
		<description>You could try just logging some entries for the process to CSV format and reviewing them.

&lt;code&gt;logman create counter w3wp_proc -c &quot;\Process(w3wp*)\% Processor Time&quot;

logman update w3wp_proc -si 10 -f csv -v mmddhhmm&lt;/code&gt;

That will update every 10 seconds.  To stop it, just:  &lt;code&gt;logman stop w3wp_proc&lt;/code&gt;

Jump into c:\perflogs\ and open up the CSV that will be in there for w3wp_proc.  Maybe confirm if that counter isn&#039;t broken by chance.</description>
		<content:encoded><![CDATA[<p>You could try just logging some entries for the process to CSV format and reviewing them.</p>
<p><code>logman create counter w3wp_proc -c "\Process(w3wp*)\% Processor Time"</p>
<p>logman update w3wp_proc -si 10 -f csv -v mmddhhmm</code></p>
<p>That will update every 10 seconds.  To stop it, just:  <code>logman stop w3wp_proc</code></p>
<p>Jump into c:\perflogs\ and open up the CSV that will be in there for w3wp_proc.  Maybe confirm if that counter isn&#8217;t broken by chance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Get Process CPU Usage Using WMI by Rich Kreider</title>
		<link>http://www.techish.net/2009/03/get-process-cpu-usage-using-wmi/#comment-676</link>
		<dc:creator>Rich Kreider</dc:creator>
		<pubDate>Thu, 02 Feb 2012 19:35:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.techish.net/?p=83#comment-676</guid>
		<description>Are you doing this from the command line or in a batch file?</description>
		<content:encoded><![CDATA[<p>Are you doing this from the command line or in a batch file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Get Process CPU Usage Using WMI by Nehemoth</title>
		<link>http://www.techish.net/2009/03/get-process-cpu-usage-using-wmi/#comment-675</link>
		<dc:creator>Nehemoth</dc:creator>
		<pubDate>Thu, 02 Feb 2012 19:25:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.techish.net/?p=83#comment-675</guid>
		<description>But at the end of the day there is a problem.

For some reason sometimes I get  &quot;No Instance(s) Available&quot;, even when I can see in the task manager that the process is right about my mark, also I just get 100 or 0 instead of the real value which should be between 5 to 50

Thank you for your help</description>
		<content:encoded><![CDATA[<p>But at the end of the day there is a problem.</p>
<p>For some reason sometimes I get  &#8220;No Instance(s) Available&#8221;, even when I can see in the task manager that the process is right about my mark, also I just get 100 or 0 instead of the real value which should be between 5 to 50</p>
<p>Thank you for your help</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Get Process CPU Usage Using WMI by Rich Kreider</title>
		<link>http://www.techish.net/2009/03/get-process-cpu-usage-using-wmi/#comment-674</link>
		<dc:creator>Rich Kreider</dc:creator>
		<pubDate>Thu, 02 Feb 2012 19:21:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.techish.net/?p=83#comment-674</guid>
		<description>&lt;code&gt;wmic path win32_perfformatteddata_perfproc_process where (PercentProcessorTime ^&gt; 5 and Name ^&lt;^&gt; &quot;_Total&quot; and Name ^&lt;^&gt; &quot;Idle&quot; and Name LIKE &quot;iexplore%&quot;) get Name, Caption, PercentProcessorTime, IDProcess, CreatingProcessID /format:list&lt;/code&gt;

&lt;img src=&quot;http://www.techish.net/pub/images/2012-02-02_142147.png&quot; alt=&quot;&quot; /&gt;

When you look at the results, you&#039;ll see the CreatingProcessID in this now;  Each tab runs under it&#039;s own process ID.  If you want to get details about the iexplore.exe process itself, you will want to query the PROCESS alias or win32_process path.

&lt;code&gt;wmic process where (handle = &quot;2788&quot;) get /Value&lt;/code&gt;

This will give you details on the actual iexplore.exe process.

&lt;img src=&quot;http://www.techish.net/pub/images/2012-02-02_142348.png&quot; alt=&quot;&quot; /&gt;</description>
		<content:encoded><![CDATA[<p><code>wmic path win32_perfformatteddata_perfproc_process where (PercentProcessorTime ^> 5 and Name ^< ^> "_Total" and Name ^< ^> "Idle" and Name LIKE "iexplore%") get Name, Caption, PercentProcessorTime, IDProcess, CreatingProcessID /format:list</code></p>
<p><img src="http://www.techish.net/pub/images/2012-02-02_142147.png" alt="" /></p>
<p>When you look at the results, you&#8217;ll see the CreatingProcessID in this now;  Each tab runs under it&#8217;s own process ID.  If you want to get details about the iexplore.exe process itself, you will want to query the PROCESS alias or win32_process path.</p>
<p><code>wmic process where (handle = "2788") get /Value</code></p>
<p>This will give you details on the actual iexplore.exe process.</p>
<p><img src="http://www.techish.net/pub/images/2012-02-02_142348.png" alt="" /></p>
]]></content:encoded>
	</item>
</channel>
</rss>

