<?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>The P-spot</title>
	<atom:link href="http://www.the-p-spot.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.the-p-spot.org</link>
	<description>Tickle your Powershell needs</description>
	<lastBuildDate>Wed, 28 Apr 2010 08:30:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Powershell for NetApp</title>
		<link>http://www.the-p-spot.org/2010/04/28/powershell-for-netapp/</link>
		<comments>http://www.the-p-spot.org/2010/04/28/powershell-for-netapp/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 08:30:55 +0000</pubDate>
		<dc:creator>Stain</dc:creator>
				<category><![CDATA[NetApp]]></category>
		<category><![CDATA[OnTap]]></category>
		<category><![CDATA[PoshOnTap]]></category>

		<guid isPermaLink="false">http://www.the-p-spot.org/?p=25</guid>
		<description><![CDATA[Hi all, a few days ago a colleague of mine Filip Sneppe, who has great expertise in Netapp solutions, sent me a link to &#8220;PoshOnTap&#8221; asking me if we already had any experience with this product in any of our Netapp environments. Unfortunately, we did not. At that point &#8211; especially because I am a [...]]]></description>
			<content:encoded><![CDATA[<p>Hi all,</p>
<p>a few days ago a colleague of mine <a href="http://be.linkedin.com/pub/filip-sneppe/1/626/139">Filip Sneppe</a>, who has great expertise in <a href="http://www.netapp.com">Netapp</a> solutions, sent me a link to &#8220;PoshOnTap&#8221; asking me if we already had any experience with this product in any of our Netapp environments. Unfortunately, we did not. At that point &#8211; especially because I am a lazy admin and dislike repetitive manual tasks &#8211; I got an overwhelming feeling of curiosity and plunged myself into the product.</p>
<p>These were the products he pointed me to:</p>
<ul>
<li>PowerShell ONTAP (2008) (Outdated): <a href="http://communities.netapp.com/docs/DOC-1581">http://communities.netapp.com/docs/DOC-1581</a></li>
<li>PoshOnTap (Powershell API wrapper): <a href="http://communities.netapp.com/docs/DOC-2111">http://communities.netapp.com/docs/DOC-2111</a></li>
</ul>
<p>I will be writing a few blogs on the last item in the list: PoshOnTap.</p>
<p>More details on PoshOntap:</p>
<ul>
<li>PoshOnTap was created by <a href="http://get-admin.com/blog/">glenn.sizemore</a>.</li>
<li>The first publication of his product can be located <a href="http://get-admin.com/blog/?p=442">here</a>.</li>
<li>Version 1.1 of this module can be located <a href="http://cid-87a5caf16b0fefef.skydrive.live.com/browse.aspx/PoshOnTap">here</a>.</li>
</ul>
<p>~Stain</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.the-p-spot.org%2F2010%2F04%2F28%2Fpowershell-for-netapp%2F&amp;title=Powershell%20for%20NetApp" id="wpa2a_2"><img src="http://www.the-p-spot.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.the-p-spot.org/2010/04/28/powershell-for-netapp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Group Membership &#8211; Nested Groups</title>
		<link>http://www.the-p-spot.org/2010/04/22/group-membership-nested-groups/</link>
		<comments>http://www.the-p-spot.org/2010/04/22/group-membership-nested-groups/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 13:31:15 +0000</pubDate>
		<dc:creator>Stain</dc:creator>
				<category><![CDATA[Active Directory]]></category>

		<guid isPermaLink="false">http://www.the-p-spot.org/?p=12</guid>
		<description><![CDATA[In addition to the article Ben wrote on April 7th, 2010, I would like to add that there is another &#8220;Group Membership&#8221; property available to a user-object when you are using the Quest AD Tools: NestedMemberOf This property lists all the indirect group memberships. If you want to retrieve all the groups the user is [...]]]></description>
			<content:encoded><![CDATA[<p>In addition to the <a href="http://www.the-p-spot.org/2010/04/07/enumerate-user-memberships-with-powershell/">article </a>Ben wrote on April 7th, 2010, I would like to add that there is another &#8220;Group Membership&#8221; property available to a user-object when you are using the <a href="http://www.quest.com/powershell/">Quest AD Tools</a>:</p>
<blockquote><p>NestedMemberOf</p></blockquote>
<p>This property lists all the indirect group memberships. If you want to retrieve all the groups the user is part of (directly and indirectly) this code will help you achieve that:</p>
<blockquote><p>$sUser = get-qaduser -samaccountname &lt;username&gt;</p>
<p>$UsrGrps = $sUser.MemberOf</p>
<p>$UsrGrps += $sUser.NestedMemberOf</p>
<p>$UsrGrps</p></blockquote>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.the-p-spot.org%2F2010%2F04%2F22%2Fgroup-membership-nested-groups%2F&amp;title=Group%20Membership%20%26%238211%3B%20Nested%20Groups" id="wpa2a_4"><img src="http://www.the-p-spot.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.the-p-spot.org/2010/04/22/group-membership-nested-groups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enumerate user memberships with Powershell</title>
		<link>http://www.the-p-spot.org/2010/04/07/enumerate-user-memberships-with-powershell/</link>
		<comments>http://www.the-p-spot.org/2010/04/07/enumerate-user-memberships-with-powershell/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 15:38:49 +0000</pubDate>
		<dc:creator>Ben De Vriese</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[MemberOf]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Quest]]></category>

		<guid isPermaLink="false">http://www.the-p-spot.org/?p=8</guid>
		<description><![CDATA[Enumerating user memberships is a common task to perform.  Unlike other scripting languages, with Powershell it&#8217;s a one-line action. First download/install Quest AD Tools, and add them: add-pssnapin quest.activeroles.admanagement I use a semicolon to combine two Powershell commands: $sUser = get-qaduser -samaccountname &#60;username&#62;; $sUser.MemberOf]]></description>
			<content:encoded><![CDATA[<p>Enumerating user memberships is a common task to perform.  Unlike other  scripting languages, with Powershell it&#8217;s a one-line action.</p>
<p>First download/install <a title="Quest Powershell Tools" href="www.quest.com/powershell/ " target="_blank">Quest AD Tools</a>,  and add them:</p>
<blockquote><p>add-pssnapin quest.activeroles.admanagement</p></blockquote>
<p>I use a semicolon to combine two Powershell commands:</p>
<blockquote><p>$sUser = get-qaduser -samaccountname &lt;username&gt;;  $sUser.MemberOf</p></blockquote>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.the-p-spot.org%2F2010%2F04%2F07%2Fenumerate-user-memberships-with-powershell%2F&amp;title=Enumerate%20user%20memberships%20with%20Powershell" id="wpa2a_6"><img src="http://www.the-p-spot.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.the-p-spot.org/2010/04/07/enumerate-user-memberships-with-powershell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

