<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: The WMI Filter Contest - are you the knight in shining armor?</title>
	<link>http://www.windowsvistaplace.com/the-wmi-filter-contest-are-you-the-knight-in-shining-armor/microsoft</link>
	<description>Install all the software and drivers you need for compatible windows vista. Best articles, reviews and videos</description>
	<pubDate>Fri, 27 Nov 2009 18:02:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>

	<item>
		<title>By: Ray</title>
		<link>http://www.windowsvistaplace.com/the-wmi-filter-contest-are-you-the-knight-in-shining-armor/microsoft#comment-13087</link>
		<author>Ray</author>
		<pubDate>Thu, 30 Jul 2009 21:17:32 +0000</pubDate>
		<guid>http://www.windowsvistaplace.com/the-wmi-filter-contest-are-you-the-knight-in-shining-armor/microsoft#comment-13087</guid>
		<description>Just wondering if you guys found a solution on this yet?

I have this situation where the same GP applied differently to desktop and laptops.   E.g.  Group Policy A will be set to X for Desktop and Y for Laptops. 

2 GPOs.  First GPO, apply X to everything, so, all workstations regardless of desktop or laptop will get applied with setting X.

Second GPO with WIM filtering "Select * from Win32_Battery Where Availability IS NOT NULL", apply Y to the everything. 

Make the second policy precendence of the first policy.  In this case, desktop will get setting "X" from the first policy, and laptop will get overwritten by policy "Y" from second policy because the WMI is true for laptop but not desktop.

That's the best I can come up with for the time being..  Do you guys have any better idea?</description>
		<content:encoded><![CDATA[<p>Just wondering if you guys found a solution on this yet?</p>
<p>I have this situation where the same GP applied differently to desktop and laptops.   E.g.  Group Policy A will be set to X for Desktop and Y for Laptops. </p>
<p>2 GPOs.  First GPO, apply X to everything, so, all workstations regardless of desktop or laptop will get applied with setting X.</p>
<p>Second GPO with WIM filtering &#8220;Select * from Win32_Battery Where Availability IS NOT NULL&#8221;, apply Y to the everything. </p>
<p>Make the second policy precendence of the first policy.  In this case, desktop will get setting &#8220;X&#8221; from the first policy, and laptop will get overwritten by policy &#8220;Y&#8221; from second policy because the WMI is true for laptop but not desktop.</p>
<p>That&#8217;s the best I can come up with for the time being..  Do you guys have any better idea?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel</title>
		<link>http://www.windowsvistaplace.com/the-wmi-filter-contest-are-you-the-knight-in-shining-armor/microsoft#comment-10868</link>
		<author>Joel</author>
		<pubDate>Thu, 19 Feb 2009 15:32:38 +0000</pubDate>
		<guid>http://www.windowsvistaplace.com/the-wmi-filter-contest-are-you-the-knight-in-shining-armor/microsoft#comment-10868</guid>
		<description>This will only work on systems with Vista on up but you can do:

Select * from Win32_ComputerSystem WHERE PCSystemType= 1 OR PCSystemType  = 3

1 = Desktop
3 = Workstation</description>
		<content:encoded><![CDATA[<p>This will only work on systems with Vista on up but you can do:</p>
<p>Select * from Win32_ComputerSystem WHERE PCSystemType= 1 OR PCSystemType  = 3</p>
<p>1 = Desktop<br />
3 = Workstation</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.windowsvistaplace.com/the-wmi-filter-contest-are-you-the-knight-in-shining-armor/microsoft#comment-6128</link>
		<author>Steve</author>
		<pubDate>Thu, 18 Sep 2008 02:06:53 +0000</pubDate>
		<guid>http://www.windowsvistaplace.com/the-wmi-filter-contest-are-you-the-knight-in-shining-armor/microsoft#comment-6128</guid>
		<description>I have Dell laptops (latitude D830's) that respond with FormFactor = 8</description>
		<content:encoded><![CDATA[<p>I have Dell laptops (latitude D830&#8217;s) that respond with FormFactor = 8</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.windowsvistaplace.com/the-wmi-filter-contest-are-you-the-knight-in-shining-armor/microsoft#comment-6122</link>
		<author>Mike</author>
		<pubDate>Wed, 17 Sep 2008 23:01:35 +0000</pubDate>
		<guid>http://www.windowsvistaplace.com/the-wmi-filter-contest-are-you-the-knight-in-shining-armor/microsoft#comment-6122</guid>
		<description>Some Dell Latitude laptops return FormFactor = 8, so this is not a "universal" solution.</description>
		<content:encoded><![CDATA[<p>Some Dell Latitude laptops return FormFactor = 8, so this is not a &#8220;universal&#8221; solution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sheree</title>
		<link>http://www.windowsvistaplace.com/the-wmi-filter-contest-are-you-the-knight-in-shining-armor/microsoft#comment-4309</link>
		<author>Sheree</author>
		<pubDate>Mon, 11 Aug 2008 16:31:28 +0000</pubDate>
		<guid>http://www.windowsvistaplace.com/the-wmi-filter-contest-are-you-the-knight-in-shining-armor/microsoft#comment-4309</guid>
		<description>Here's what I use:

&lt;b&gt;Desktop:&lt;/b&gt;
SELECT * FROM &lt;a href="http://msdn.microsoft.com/en-us/library/aa394347(VS.85).aspx" rel="nofollow"&gt;Win32_PhysicalMemory&lt;/a&gt; WHERE FormFactor = 8
(8 is "DIMM"--add other numbers if you have RIMMs or SIMMs.)

&lt;b&gt;Laptops:&lt;/b&gt;
SELECT * FROM &lt;a href="http://msdn.microsoft.com/en-us/library/aa394347(VS.85).aspx" rel="nofollow"&gt;Win32_PhysicalMemory&lt;/a&gt; WHERE FormFactor = 12
(12 is "SODIMM".)</description>
		<content:encoded><![CDATA[<p>Here&#8217;s what I use:</p>
<p><b>Desktop:</b><br />
SELECT * FROM <a href="http://msdn.microsoft.com/en-us/library/aa394347(VS.85).aspx" rel="nofollow">Win32_PhysicalMemory</a> WHERE FormFactor = 8<br />
(8 is &#8220;DIMM&#8221;&#8211;add other numbers if you have RIMMs or SIMMs.)</p>
<p><b>Laptops:</b><br />
SELECT * FROM <a href="http://msdn.microsoft.com/en-us/library/aa394347(VS.85).aspx" rel="nofollow">Win32_PhysicalMemory</a> WHERE FormFactor = 12<br />
(12 is &#8220;SODIMM&#8221;.)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
