<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>System Management &#187; Query</title>
	<atom:link href="http://systemmanagement.ro/blog/tag/query/feed/" rel="self" type="application/rss+xml" />
	<link>http://systemmanagement.ro/blog</link>
	<description>Discussions about system management technologies. Including, but not limited to, ConfigMgr, WDS, MDT, WSUS, Forefront, VMM, Hyper-V etc.</description>
	<lastBuildDate>Mon, 29 Mar 2010 05:43:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Collection based on computer model</title>
		<link>http://systemmanagement.ro/blog/2010/02/14/collection-based-on-computer-model/</link>
		<comments>http://systemmanagement.ro/blog/2010/02/14/collection-based-on-computer-model/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 08:24:42 +0000</pubDate>
		<dc:creator>Vitalie Ciobanu</dc:creator>
				<category><![CDATA[ConfigMgr]]></category>
		<category><![CDATA[Query]]></category>

		<guid isPermaLink="false">http://systemmanagement.ro/blog/?p=392</guid>
		<description><![CDATA[select SMS_R_SYSTEM.ResourceID, SMS_R_SYSTEM.ResourceType, SMS_R_SYSTEM.Name, SMS_R_SYSTEM.SMSUniqueIdentifier, SMS_R_SYSTEM.ResourceDomainORWorkgroup, SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId where SMS_G_System_COMPUTER_SYSTEM.Model like &#8220;%HP ProBook 4710s%&#8221;]]></description>
		<wfw:commentRss>http://systemmanagement.ro/blog/2010/02/14/collection-based-on-computer-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find computer model and manufacturer using remote WMI</title>
		<link>http://systemmanagement.ro/blog/2010/01/18/find-computer-model-and-manufacturer-using-remote-wmi/</link>
		<comments>http://systemmanagement.ro/blog/2010/01/18/find-computer-model-and-manufacturer-using-remote-wmi/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 08:11:12 +0000</pubDate>
		<dc:creator>Vitalie Ciobanu</dc:creator>
				<category><![CDATA[Inventory]]></category>
		<category><![CDATA[Computer Configuration]]></category>
		<category><![CDATA[Query]]></category>

		<guid isPermaLink="false">http://systemmanagement.ro/blog/2010/01/18/find-computer-model-and-manufacturer-using-remote-wmi/</guid>
		<description><![CDATA[In case you need to find the computer model and manufacturer of a remote computer, just use the following command in a command prompt window: %windir%\System32\wbem\WMIC.exe /node:&#34;ComputerNameORIpAddress&#34; ComputerSystem Get Model, Manufacturer If you need to specify user credentials, use the following command: %windir%\System32\wbem\WMIC.exe /node:&#34;ComputerNameORIpAddress&#34; /user:&#34;domain\username&#34; /password:&#34;password&#34; ComputerSystem Get Model, Manufacturer]]></description>
		<wfw:commentRss>http://systemmanagement.ro/blog/2010/01/18/find-computer-model-and-manufacturer-using-remote-wmi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrade Configuration Manager client</title>
		<link>http://systemmanagement.ro/blog/2010/01/14/upgrade-configuration-manager-client/</link>
		<comments>http://systemmanagement.ro/blog/2010/01/14/upgrade-configuration-manager-client/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 16:54:08 +0000</pubDate>
		<dc:creator>Vitalie Ciobanu</dc:creator>
				<category><![CDATA[ConfigMgr]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[Reports]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://systemmanagement.ro/blog/2010/01/14/upgrade-configuration-manager-client/</guid>
		<description><![CDATA[Recently I reinstalled ConfigMgr server in my company and was looking for an easy method to upgrade all Configuration Manager clients to 4.00.6487.2000 version. Put some notes on the table and finally made the following plan: Create a report that counts all client versions. (This is optional, just for information purposes). Report query is: SELECT [...]]]></description>
		<wfw:commentRss>http://systemmanagement.ro/blog/2010/01/14/upgrade-configuration-manager-client/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WMI query for processor manufacturer</title>
		<link>http://systemmanagement.ro/blog/2009/11/10/wmi-query-for-processor-manufacturer/</link>
		<comments>http://systemmanagement.ro/blog/2009/11/10/wmi-query-for-processor-manufacturer/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 10:56:08 +0000</pubDate>
		<dc:creator>Vitalie Ciobanu</dc:creator>
				<category><![CDATA[Operating System Deployment]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[Task Sequence]]></category>

		<guid isPermaLink="false">http://systemmanagement.ro/blog/2009/11/10/wmi-query-for-processor-manufacturer/</guid>
		<description><![CDATA[Following the post regarding how to install drivers based on computer model using WMI query, here is another query you can use in your task sequences to install some processor specific software for example. To find the processor manufacturer during a task sequence, insert a condition for the step you need, and select Query WMI. [...]]]></description>
		<wfw:commentRss>http://systemmanagement.ro/blog/2009/11/10/wmi-query-for-processor-manufacturer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All reports with links to other reports</title>
		<link>http://systemmanagement.ro/blog/2009/10/02/all-reports-with-links-to-other-reports/</link>
		<comments>http://systemmanagement.ro/blog/2009/10/02/all-reports-with-links-to-other-reports/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 08:23:00 +0000</pubDate>
		<dc:creator>Vitalie Ciobanu</dc:creator>
				<category><![CDATA[ConfigMgr Reporting]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[Reports]]></category>

		<guid isPermaLink="false">http://systemmanagement.ro/blog/2009/10/02/all-reports-with-links-to-other-reports/</guid>
		<description><![CDATA[Last month, after restoring the only ConfigMgr site and importing new reports, I saw that none of the reports I’m using have a link to another report. To be sincere, this was a problem I didn’t know where to start troubleshooting. Thanks to guys from Microsoft’s ConfigMgr forum, who helped me identify the problem and [...]]]></description>
		<wfw:commentRss>http://systemmanagement.ro/blog/2009/10/02/all-reports-with-links-to-other-reports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create collection with all Windows XP SP 1-2-3 systems</title>
		<link>http://systemmanagement.ro/blog/2009/08/24/create-collection-with-all-windows-xp-sp-1-2-3-systems/</link>
		<comments>http://systemmanagement.ro/blog/2009/08/24/create-collection-with-all-windows-xp-sp-1-2-3-systems/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 06:48:47 +0000</pubDate>
		<dc:creator>Vitalie Ciobanu</dc:creator>
				<category><![CDATA[Collections]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://systemmanagement.ro/blog/2009/08/24/create-collection-with-all-windows-xp-sp-1-2-3-systems/</guid>
		<description><![CDATA[For the one who searched for these… To create a collection with all Windows XP SP1 systems, use the query bellow: select SMS_R_SYSTEM.ResourceID, SMS_R_SYSTEM.ResourceType, SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier, SMS_R_SYSTEM.ResourceDomainORWorkgroup, SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_OPERATING_SYSTEM on SMS_G_System_OPERATING_SYSTEM.ResourceID = SMS_R_System.ResourceId where SMS_G_System_OPERATING_SYSTEM.Caption like &#34;%Windows XP%&#34; and SMS_G_System_OPERATING_SYSTEM.CSDVersion = &#34;Service Pack 1&#34; Similarly, to create a collection with all Windows [...]]]></description>
		<wfw:commentRss>http://systemmanagement.ro/blog/2009/08/24/create-collection-with-all-windows-xp-sp-1-2-3-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All .mp3 files on Desktop and My Documents folder</title>
		<link>http://systemmanagement.ro/blog/2009/06/16/all-mp3-files-on-desktop-and-my-documents-folder/</link>
		<comments>http://systemmanagement.ro/blog/2009/06/16/all-mp3-files-on-desktop-and-my-documents-folder/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 16:48:19 +0000</pubDate>
		<dc:creator>Vitalie Ciobanu</dc:creator>
				<category><![CDATA[Inventory]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[Software Inventory]]></category>

		<guid isPermaLink="false">http://systemmanagement.ro/blog/2009/06/16/all-mp3-files-on-desktop-and-my-documents-folder/</guid>
		<description><![CDATA[Want to know if your users store mp3 files on Desktop and My Documents folder? Add .mp3 file type to Software Inventory Client Agent properties Navigate to Site Database – Site Management – Site Name – Site Settings – Client Agents and double click Software Inventory Client Agent Select Inventory Collection tab Click the new [...]]]></description>
		<wfw:commentRss>http://systemmanagement.ro/blog/2009/06/16/all-mp3-files-on-desktop-and-my-documents-folder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install drivers by computer model using WMI query</title>
		<link>http://systemmanagement.ro/blog/2009/05/22/install-drivers-by-computer-model-using-wmi-query/</link>
		<comments>http://systemmanagement.ro/blog/2009/05/22/install-drivers-by-computer-model-using-wmi-query/#comments</comments>
		<pubDate>Fri, 22 May 2009 13:56:00 +0000</pubDate>
		<dc:creator>Vitalie Ciobanu</dc:creator>
				<category><![CDATA[Operating System Deployment]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Drivers]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[Task Sequence]]></category>

		<guid isPermaLink="false">http://systemmanagement.ro/blog/2009/05/22/install-drivers-by-computer-model-using-wmi-query/</guid>
		<description><![CDATA[When using task sequence, you might want to install different driver packages for different computer models. This can be accomplished by using a WMI query. First of all you need to have driver packages for all your computer models and know the exact model name for every computer. To find this, open a command prompt [...]]]></description>
		<wfw:commentRss>http://systemmanagement.ro/blog/2009/05/22/install-drivers-by-computer-model-using-wmi-query/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a collection with all x64 systems</title>
		<link>http://systemmanagement.ro/blog/2009/03/16/create-a-collection-with-all-x64-systems/</link>
		<comments>http://systemmanagement.ro/blog/2009/03/16/create-a-collection-with-all-x64-systems/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 07:55:07 +0000</pubDate>
		<dc:creator>Vitalie Ciobanu</dc:creator>
				<category><![CDATA[Collections]]></category>
		<category><![CDATA[Query]]></category>

		<guid isPermaLink="false">http://systemmanagement.ro/blog/2009/03/16/create-a-collection-with-all-x64-systems/</guid>
		<description><![CDATA[As I have some free time, I’m testing different things with SCCM, mainly in creating different collections that I might need. Bellow you can find the query that will show you all x64 systems, client and server operating systems. select SMS_R_SYSTEM.ResourceID, SMS_R_SYSTEM.ResourceType, SMS_R_SYSTEM.Name, SMS_R_SYSTEM.SMSUniqueIdentifier, SMS_R_SYSTEM.ResourceDomainORWorkgroup, SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceId = SMS_R_System.ResourceId [...]]]></description>
		<wfw:commentRss>http://systemmanagement.ro/blog/2009/03/16/create-a-collection-with-all-x64-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a collection with all mobile (laptops, notebooks, portable) systems</title>
		<link>http://systemmanagement.ro/blog/2009/03/09/create-a-collection-with-all-mobile-laptops-notebooks-portable-systems/</link>
		<comments>http://systemmanagement.ro/blog/2009/03/09/create-a-collection-with-all-mobile-laptops-notebooks-portable-systems/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 00:27:42 +0000</pubDate>
		<dc:creator>Vitalie Ciobanu</dc:creator>
				<category><![CDATA[Collections]]></category>
		<category><![CDATA[Error]]></category>
		<category><![CDATA[Query]]></category>

		<guid isPermaLink="false">http://systemmanagement.ro/blog/2009/03/09/create-a-collection-with-all-mobile-laptops-notebooks-portable-systems/</guid>
		<description><![CDATA[Someone just asked how to create a collection with all laptop computers? Well, if there is a good naming convention on site, this query will be easy to make even for me But, otherwise, we need to use chassis type value because laptops and notebooks are not the same things. The full list with chassis [...]]]></description>
		<wfw:commentRss>http://systemmanagement.ro/blog/2009/03/09/create-a-collection-with-all-mobile-laptops-notebooks-portable-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a collection with systems without Adobe Reader 9</title>
		<link>http://systemmanagement.ro/blog/2009/03/01/create-a-collection-with-systems-without-adobe-reader-9/</link>
		<comments>http://systemmanagement.ro/blog/2009/03/01/create-a-collection-with-systems-without-adobe-reader-9/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 16:49:34 +0000</pubDate>
		<dc:creator>Vitalie Ciobanu</dc:creator>
				<category><![CDATA[Collections]]></category>
		<category><![CDATA[Adobe Reader]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[Query]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://systemmanagement.ro/blog/2009/03/01/create-a-collection-with-systems-without-adobe-reader-9/</guid>
		<description><![CDATA[Recently, I needed a collection with all computers that do not have Adobe Reader 9 installed. I created a collection with this query: SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName not like "%Adobe Reader 9%". Everything was fine except the fact that my computer was also listed, despite the fact that I have Adobe Reader 9 installed. Well, I’m not an [...]]]></description>
		<wfw:commentRss>http://systemmanagement.ro/blog/2009/03/01/create-a-collection-with-systems-without-adobe-reader-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
