Find Hyperthread enabled computers
Confirm your SMS2003 or ConfigMgr environment is reporting on 2 elements by
-
On your primary site server(s), open up sms_def.mof contained in inboxes\clifiles.src\hinv
-
Within that file, look for “IsHyperthreadCapable” and “IsHyperthreadEnabled”. They may be set as “FALSE”. Change them to TRUE, and save the file.
-
Use
this to monitor your inventory changes.
Once you have data being returned, a possible report is:
SELECT DISTINCT
v_R_System.Name0 AS [Name],
CASE
WHEN v_GS_PROCESSOR.IsHyperthreadCapable0 = 1 THEN 'Yes'
ELSE 'No'
END AS [Hyperthread Capable?],
CASE
WHEN v_GS_PROCESSOR.IsHyperthreadEnabled0 = 0 THEN 'Off'
ELSE 'Not Applicable'
END AS [Hyperthread Enabled?]
FROM
v_GS_PROCESSOR
INNER JOIN v_R_System
ON v_GS_PROCESSOR.ResourceID = v_R_System.ResourceID
AND v_R_System.obsolete0 = 0
AND v_R_System.decommissioned0 = 0
AND v_R_System.client0 = 1
This blog entry brought to you by the following resources: