<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Read Hyperthreading setting from windows servers. in ProLiant Servers (ML,DL,SL)</title>
    <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744171#M109191</link>
    <description>Is there a way to read the hyperthreading setting across a large number of servers?&lt;BR /&gt;I need to audit an environment of 300+ proliant servers running a mix of w2k3/w2k8, I need to determine if hyper threading is enabled.</description>
    <pubDate>Wed, 26 Jan 2011 16:42:25 GMT</pubDate>
    <dc:creator>Stephen D Watts</dc:creator>
    <dc:date>2011-01-26T16:42:25Z</dc:date>
    <item>
      <title>Read Hyperthreading setting from windows servers.</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744171#M109191</link>
      <description>Is there a way to read the hyperthreading setting across a large number of servers?&lt;BR /&gt;I need to audit an environment of 300+ proliant servers running a mix of w2k3/w2k8, I need to determine if hyper threading is enabled.</description>
      <pubDate>Wed, 26 Jan 2011 16:42:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744171#M109191</guid>
      <dc:creator>Stephen D Watts</dc:creator>
      <dc:date>2011-01-26T16:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: Read Hyperthreading setting from windows servers.</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744172#M109192</link>
      <description>Hi Stephen,&lt;BR /&gt;&lt;BR /&gt;If you have HP SIM in your environment and all these machines are managed.. you can retrieve the system info including hyper-threading settings from the proliant servers.&lt;BR /&gt;&lt;BR /&gt;thanks&lt;BR /&gt;Aftab</description>
      <pubDate>Wed, 26 Jan 2011 18:28:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744172#M109192</guid>
      <dc:creator>Ali</dc:creator>
      <dc:date>2011-01-26T18:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: Read Hyperthreading setting from windows servers.</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744173#M109193</link>
      <description>Aftab,&lt;BR /&gt;&lt;BR /&gt;Would you know how I can retrieve this information.  The reporting in SIMM does appear to provide that information.  I can look at individual server management homepages but this would become very tedious and I need to find a solution that I can automate into a report or perhaps intgrate into an audit.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Stephen</description>
      <pubDate>Tue, 01 Feb 2011 11:26:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744173#M109193</guid>
      <dc:creator>Stephen D Watts</dc:creator>
      <dc:date>2011-02-01T11:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: Read Hyperthreading setting from windows servers.</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744174#M109194</link>
      <description>SIMPLE YET EFFECTIVE VBSCRIPT:&lt;BR /&gt;if you have WMI access to all servers, you can loop it changing strComputer.&lt;BR /&gt;&lt;BR /&gt;strComputer = "."&lt;BR /&gt;Set objWMIService = GetObject("winmgmts:" _&lt;BR /&gt;    &amp;amp; "{impersonationLevel=impersonate}!\\" &amp;amp; strComputer &amp;amp; "\root\cimv2")&lt;BR /&gt;&lt;BR /&gt;Set colProcessor = objWMIService.ExecQuery _&lt;BR /&gt;    ("Select * from Win32_Processor")&lt;BR /&gt;&lt;BR /&gt;For Each objProcessor in colProcessor&lt;BR /&gt;    IF objProcessor.NumberOfLogicalProcessors &amp;gt; objProcessor.NumberOfCores THEN&lt;BR /&gt; Wscript.Echo "HYPERTHREADING ENABLED!"&lt;BR /&gt;    END IF&lt;BR /&gt;Next&lt;BR /&gt;&lt;BR /&gt;created and tested right now and it works!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Feb 2011 12:26:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744174#M109194</guid>
      <dc:creator>Diego Castelli</dc:creator>
      <dc:date>2011-02-01T12:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Read Hyperthreading setting from windows servers.</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744175#M109195</link>
      <description>take a look here:&lt;BR /&gt;&lt;A href="http://msdn.microsoft.com/en-us/library/aa394373%28v=vs.85%29.aspx" target="_blank"&gt;http://msdn.microsoft.com/en-us/library/aa394373%28v=vs.85%29.aspx&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;to know what other properties are available through WMI querying the Win32_Processor class&lt;BR /&gt;&lt;BR /&gt;HTH Bye!</description>
      <pubDate>Tue, 01 Feb 2011 12:28:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744175#M109195</guid>
      <dc:creator>Diego Castelli</dc:creator>
      <dc:date>2011-02-01T12:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: Read Hyperthreading setting from windows servers.</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744176#M109196</link>
      <description>Diego,&lt;BR /&gt;&lt;BR /&gt;Thanks for the wmi info.  I actually did come up with a simular solution using powershell.  I was hoping to find a way reading the actual setting from the processor.  On some of our older Proliant hardware these win32_processor values are not populated.&lt;BR /&gt;&lt;BR /&gt;Thanks again,&lt;BR /&gt;&lt;BR /&gt;Stephen</description>
      <pubDate>Tue, 01 Feb 2011 12:35:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744176#M109196</guid>
      <dc:creator>Stephen D Watts</dc:creator>
      <dc:date>2011-02-01T12:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: Read Hyperthreading setting from windows servers.</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744177#M109197</link>
      <description>NumberOfLogicalProcessors and NumberOfCores property can not use in Windows XP Service Pack 2 and earlier.&lt;BR /&gt;&lt;BR /&gt;In Windows XP Service Pack 3, NumberOfLogicalProcessors and NumberOfCores property is available.&lt;BR /&gt;&lt;BR /&gt;In Windows Server 2003 Service Pack 2 and earlier, NumberOfLogicalProcessors and NumberOfCores property is not available. But applied KB932370 hotfix, NumberOfLogicalProcessors and NumberOfCores property is available.See&lt;BR /&gt;&lt;BR /&gt;The number of physical hyperthreading-enabled processors or the number of physical multicore processors is incorrectly reported in Windows Server 2003&lt;BR /&gt;&lt;A href="http://support.microsoft.com/kb/932370/" target="_blank"&gt;http://support.microsoft.com/kb/932370/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;In Windows Vista, NumberOfLogicalProcessors and NumberOfCores property is available.&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Feb 2011 12:39:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744177#M109197</guid>
      <dc:creator>Diego Castelli</dc:creator>
      <dc:date>2011-02-01T12:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: Read Hyperthreading setting from windows servers.</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744178#M109198</link>
      <description>Thanks!  That answers my question exactly.&lt;BR /&gt;I will check the systems that aren't reporting correctly and remediate them with the patch.  (if appropriate)&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Feb 2011 12:49:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744178#M109198</guid>
      <dc:creator>Stephen D Watts</dc:creator>
      <dc:date>2011-02-01T12:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: Read Hyperthreading setting from windows servers.</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744179#M109199</link>
      <description>Thank you for the feedback.&lt;BR /&gt;&lt;BR /&gt;Glad to be of help :-)</description>
      <pubDate>Tue, 01 Feb 2011 14:35:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744179#M109199</guid>
      <dc:creator>Diego Castelli</dc:creator>
      <dc:date>2011-02-01T14:35:18Z</dc:date>
    </item>
    <item>
      <title>Re: Read Hyperthreading setting from windows servers.</title>
      <link>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744180#M109200</link>
      <description>HP - Can you provide a way of pulling this info out of SIM , ie a SQL Query or whatever. The WMI / Patch method is not viable for us given the variety of (old) OS's we have.</description>
      <pubDate>Thu, 19 May 2011 14:59:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/proliant-servers-ml-dl-sl/read-hyperthreading-setting-from-windows-servers/m-p/4744180#M109200</guid>
      <dc:creator>andyjball</dc:creator>
      <dc:date>2011-05-19T14:59:33Z</dc:date>
    </item>
  </channel>
</rss>

