<?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>PowerShell.nu &#187; WMI</title>
	<atom:link href="http://www.powershell.nu/category/wmi/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.powershell.nu</link>
	<description>Windows PowerShell</description>
	<lastBuildDate>Thu, 08 Dec 2011 14:46:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>PowerShell &amp; SCCM &#8211; Client</title>
		<link>http://www.powershell.nu/2010/10/07/powershell-sccm-client/</link>
		<comments>http://www.powershell.nu/2010/10/07/powershell-sccm-client/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 20:27:09 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[Client Management]]></category>
		<category><![CDATA[SCCM 2007]]></category>
		<category><![CDATA[WMI]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=1051</guid>
		<description><![CDATA[In the previous posts we created a new Package containing Windows PowerShell and distributed it to all all XP clients in the &#8220;All Windows XP Systems&#8221; Collection. Assuming that everything went OK the package should have been distributed and installed on the Client. With Windows PowerShell installed on the Client we can manage the SMS [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2010/10/07/powershell-sccm-client/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PowerShell &amp; SCCM &#8211; Advertisement</title>
		<link>http://www.powershell.nu/2010/10/07/powershell-sccm-advertisement/</link>
		<comments>http://www.powershell.nu/2010/10/07/powershell-sccm-advertisement/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 20:26:07 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[SCCM 2007]]></category>
		<category><![CDATA[WMI]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=1049</guid>
		<description><![CDATA[In this post we&#8217;ll look at Advertisements in SCCM 2007. First we&#8217;ll retrieve an existing advertisement using PowerShell. PS > $pkgAdobe = Get-WmiObject -Namespace "root\SMS\Site_LAB" ` >> -Query "Select * from SMS_Package WHERE Name = 'Adobe Reader'" In the example above we use the SMS_Package Class to retrieve a specific Package, next we use the [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2010/10/07/powershell-sccm-advertisement/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>PowerShell &amp; SCCM &#8211; Distribution Point</title>
		<link>http://www.powershell.nu/2010/10/07/powershell-sccm-distribution-point/</link>
		<comments>http://www.powershell.nu/2010/10/07/powershell-sccm-distribution-point/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 20:24:17 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[SCCM 2007]]></category>
		<category><![CDATA[WMI]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=1047</guid>
		<description><![CDATA[We can use the SPS_DistributionPoint class to retrieve information about all or a specific distribution point in SCCM 2007 using Windows PowerShell. In the example below we first retrieve a Package and then use the PackageID to retrieve the Distribution Point associated with the Package. PS > $pkgAdobe = Get-WmiObject -Namespace "root\SMS\Site_LAB" ` >> -Query [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2010/10/07/powershell-sccm-distribution-point/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerShell &amp; SCCM &#8211; Program</title>
		<link>http://www.powershell.nu/2010/10/07/powershell-sccm-program/</link>
		<comments>http://www.powershell.nu/2010/10/07/powershell-sccm-program/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 20:22:58 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[SCCM 2007]]></category>
		<category><![CDATA[WMI]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=1045</guid>
		<description><![CDATA[In this post we&#8217;ll see examples on retrieving, modifying and creatint Programs in SCCM 2007. First let&#8217;s see how to retrieve a specific Program using Windows PowerShell. PS > $pkgAdobe = Get-WmiObject -Namespace "root\SMS\Site_LAB" ` >> -Query "Select * from SMS_Package WHERE Name = 'Adobe Reader'" PS > $prgAdobe = Get-WmiObject -Namespace "root\SMS\Site_LAB" ` >> [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2010/10/07/powershell-sccm-program/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PowerShell &amp; SCCM &#8211; Collections</title>
		<link>http://www.powershell.nu/2010/10/07/powershell-sccm-collections/</link>
		<comments>http://www.powershell.nu/2010/10/07/powershell-sccm-collections/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 20:15:53 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[SCCM 2007]]></category>
		<category><![CDATA[WMI]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=1039</guid>
		<description><![CDATA[There are a couple of WMI classes that handle Site Collections. We can display them by using the Get-WmiObject cmdlet as shown below. PS > Get-WmiObject -Namespace "root\SMS\Site_LAB" -List &#124; >> Where-Object { $_.Name -match "Collection" } &#124; >> Select-Object -Property Name Name ---- SMS_Collection SMS_FullCollectionMembership SMS_CollectionSettings SMS_CollectionMember SMS_CollectionMember_a SMS_CollectionToPkgAdvert_a SMS_CollectionRule SMS_CollectionRuleDirect SMS_CollectionRuleQuery SMS_CollectionVariable Let&#8217;s [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2010/10/07/powershell-sccm-collections/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PowerShell &amp; SCCM &#8211; Getting Started with WMI</title>
		<link>http://www.powershell.nu/2010/10/07/powershell-sccm-getting-started-with-wmi/</link>
		<comments>http://www.powershell.nu/2010/10/07/powershell-sccm-getting-started-with-wmi/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 20:13:52 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[SCCM 2007]]></category>
		<category><![CDATA[WMI]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=1036</guid>
		<description><![CDATA[Did you know that you can use Windows PowerShell to automate SCCM 2007? There are no native cmdlets, however you can use WMI to automate almost everything in your SCCM 2007 environment. In this post we&#8217;ll take a look at how to use WMI in Windows PowerShell. There are a couple of ways to work [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2010/10/07/powershell-sccm-getting-started-with-wmi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get-PrinterInformation</title>
		<link>http://www.powershell.nu/2009/06/18/get-printerinformation/</link>
		<comments>http://www.powershell.nu/2009/06/18/get-printerinformation/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 18:41:04 +0000</pubDate>
		<dc:creator>Niklas Goude</dc:creator>
				<category><![CDATA[Client Management]]></category>
		<category><![CDATA[WMI]]></category>

		<guid isPermaLink="false">http://www.powershell.nu/?p=762</guid>
		<description><![CDATA[Gathering Printerinformation can be done through WMI. Win32_Printer contains information about printers that are used by a computer and Win32_PrinterDriver contains information about the printer drivers. We can combine these 2 WMI classes and retrieve information about both the printer and it&#8217;s drivers. This script checks for the following properties: Computer : Client1 Name : [...]]]></description>
		<wfw:commentRss>http://www.powershell.nu/2009/06/18/get-printerinformation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

