<?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>Techibee.com &#187; PowerShell for GPO CSEs</title>
	<atom:link href="http://techibee.com/tag/powershell-for-gpo-cses/feed" rel="self" type="application/rss+xml" />
	<link>http://techibee.com</link>
	<description>A System Administrator&#039;s Blog</description>
	<lastBuildDate>Mon, 06 Feb 2012 09:40:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to know the list of GPO CSEs available in computer</title>
		<link>http://techibee.com/group-policies/list-of-gpo-cses-available-in-computer/183</link>
		<comments>http://techibee.com/group-policies/list-of-gpo-cses-available-in-computer/183#comments</comments>
		<pubDate>Tue, 05 Jan 2010 15:23:06 +0000</pubDate>
		<dc:creator>Sitaram Pamarthi</dc:creator>
				<category><![CDATA[Group Policies]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[PowerShell for GPO CSEs]]></category>
		<category><![CDATA[query GPO CSEs using powershell]]></category>

		<guid isPermaLink="false">http://techibee.com/?p=183</guid>
		<description><![CDATA[While working on GPOs related stuff, initially I struggled to find a way to know list of GPOs available in my machine. After a bit of research I found that list will be available at registry location &#8220;HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWinlogonGPExtensions&#8221;. I am satisfied and started looking at this location whenever I want to know CSE settings. [...]]]></description>
			<content:encoded><![CDATA[<div class="rw-right"><div class="rw-ui-container rw-class-blog-post rw-urid-1840"></div></div><p>While working on GPOs related stuff, initially I struggled to find a way to know list of GPOs available in my machine. After a bit of research I found that list will be available at registry location &#8220;HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWinlogonGPExtensions&#8221;. I am satisfied and started looking at this location whenever I want to know CSE settings. But a bit later, I found this procedure also little bit difficult and finally relied on my favorite to get this information for me.  Below are the examples,</p>
<p><span style="text-decoration: underline;">To list all CSEs installed in my machine alone with their GUID, use below one liner.</span></p>
<blockquote><p>PS C:&gt; Get-ItemProperty &#8220;HKLM:SOFTWAREMicrosoftWindows NTCurrentVersionWinlogonGPExtensions*&#8221; | ft &#8220;(default)&#8221;, PSChildName</p></blockquote>
<p>And the output of above command will be something like this&#8230;</p>
<p><a href="http://techibee.com/wp-content/uploads/2010/01/query-cse.png"><img class="aligncenter size-medium wp-image-189" title="query-cse" src="http://techibee.com/wp-content/uploads/2010/01/query-cse-300x275.png" alt="" width="300" height="275" /></a></p>
<p><span style="text-decoration: underline;">To list the properties of a given CSE(say drive mappings), use the below one liner.</span></p>
<blockquote><p>PS C:&gt; Get-ItemProperty &#8220;HKLM:SOFTWAREMicrosoftWindows NTCurrentVersionWinlogonGPExtensions*&#8221; | where {&#8220;$_.(default)&#8221; -like &#8220;*drive*&#8221;}</p></blockquote>
<p><span style="text-decoration: underline;">Similarly, to list the Internet Explorer Branding CSE related settings, use the below one.</span></p>
<blockquote><p>PS C:&gt; Get-ItemProperty &#8220;HKLM:SOFTWAREMicrosoftWindows NTCurrentVersionWinlogonGPExtensions*&#8221; | where {&#8220;$_.(default)&#8221; -like &#8220;*Internet Explorer Branding*&#8221;}</p></blockquote>
<p>Similarly, you can play with remaining options if you have some PS knowledge. Let me know if can not make out any particular thing.</p>
<p>Happy Learning..,<br />
Sitaram Pamarthi</p>
]]></content:encoded>
			<wfw:commentRss>http://techibee.com/group-policies/list-of-gpo-cses-available-in-computer/183/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

