<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Leveraging Windows PowerShell Type Extensions to get documentation</title><link>http://blogs.msdn.com/b/powershell/archive/2006/06/24/644987.aspx</link><description>After just a little use of Windows PowerShell, you quickly learn that you need to pipe objects in the GET-MEMBER utility to understand the capabilities of that object. Get-Member reflects against the object and shows you all of its methods and properties</description><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>Active directory search | keyongtech</title><link>http://blogs.msdn.com/b/powershell/archive/2006/06/24/644987.aspx#9338150</link><pubDate>Sun, 18 Jan 2009 19:27:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9338150</guid><dc:creator>Active directory search | keyongtech</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://www.keyongtech.com/2835580-active-directory-search"&gt;http://www.keyongtech.com/2835580-active-directory-search&lt;/a&gt;&lt;/p&gt;
&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9338150" width="1" height="1"&gt;</description></item><item><title>re: Leveraging Windows PowerShell Type Extensions to get documentation</title><link>http://blogs.msdn.com/b/powershell/archive/2006/06/24/644987.aspx#8595553</link><pubDate>Sat, 14 Jun 2008 05:16:32 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8595553</guid><dc:creator>June Blender</dc:creator><description>&lt;p&gt;An added &amp;quot;Select&amp;quot; makes it work with collections. It gets the .NET help for the type of the first object in the collection.&lt;/p&gt;
&lt;p&gt;$Uri = &amp;quot;&lt;a rel="nofollow" target="_new" href="http://msdn2.microsoft.com/&amp;quot;"&gt;http://msdn2.microsoft.com/&amp;quot;&lt;/a&gt; + $culture + &amp;quot;/library/&amp;quot; + ($this | select -first 1).GetType().FullName + &amp;quot;.ASPX&amp;quot; &lt;/p&gt;
&lt;p&gt;Otherwise, you get &amp;quot;Content Not Found&amp;quot; for:&lt;/p&gt;
&lt;p&gt;(get-process).msdn(), which will confuse beginners.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8595553" width="1" height="1"&gt;</description></item><item><title>re: Leveraging Windows PowerShell Type Extensions to get documentation</title><link>http://blogs.msdn.com/b/powershell/archive/2006/06/24/644987.aspx#4898807</link><pubDate>Thu, 13 Sep 2007 22:58:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4898807</guid><dc:creator>vozeldr</dc:creator><description>&lt;p&gt;When used with a COM object, the method throws an exception because it cannot reflect out the GetType method.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=4898807" width="1" height="1"&gt;</description></item><item><title>re: Leveraging Windows PowerShell Type Extensions to get documentation</title><link>http://blogs.msdn.com/b/powershell/archive/2006/06/24/644987.aspx#749937</link><pubDate>Tue, 12 Sep 2006 00:40:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:749937</guid><dc:creator>nene</dc:creator><description>gfg&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=749937" width="1" height="1"&gt;</description></item><item><title>re: Leveraging Windows PowerShell Type Extensions to get documentation</title><link>http://blogs.msdn.com/b/powershell/archive/2006/06/24/644987.aspx#712857</link><pubDate>Tue, 22 Aug 2006 19:48:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:712857</guid><dc:creator>Nick Daniels</dc:creator><description>Also if you change the begining of $Uri to &lt;a rel="nofollow" target="_new" href="http://windowssdk.msdn.microsoft.com/"&gt;http://windowssdk.msdn.microsoft.com/&lt;/a&gt; you'll get docs for all the PowerShell and .Net 3.0 objects. Handy.&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=712857" width="1" height="1"&gt;</description></item><item><title>re: Leveraging Windows PowerShell Type Extensions to get documentation</title><link>http://blogs.msdn.com/b/powershell/archive/2006/06/24/644987.aspx#712842</link><pubDate>Tue, 22 Aug 2006 19:37:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:712842</guid><dc:creator>Nick Daniels</dc:creator><description>Here is an even shorter script that will start your default browser, be it IE, FireFox, Opera, Whatever:&lt;br&gt;&lt;br&gt;$culture = $host.currentculture&lt;br&gt;if ($args[0])&lt;br&gt;{&lt;br&gt;	$culture = $args[0]&lt;br&gt;}&lt;br&gt;	$Uri = &amp;quot;&lt;a rel="nofollow" target="_new" href="http://msdn2.microsoft.com/&amp;quot;"&gt;http://msdn2.microsoft.com/&amp;quot;&lt;/a&gt; + $culture + &amp;quot;/library/&amp;quot; + $this.GetType().FullName + &amp;quot;.ASPX&amp;quot;&lt;br&gt;			 &amp;nbsp; &lt;br&gt;[System.Diagnostics.Process]::Start($uri) | out-null&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=712842" width="1" height="1"&gt;</description></item><item><title>ScriptBlock and Runspace Remoting in PowerShell</title><link>http://blogs.msdn.com/b/powershell/archive/2006/06/24/644987.aspx#666545</link><pubDate>Sat, 15 Jul 2006 12:13:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:666545</guid><dc:creator>ComputerZen.com - Scott Hanselman</dc:creator><description>&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=666545" width="1" height="1"&gt;</description></item><item><title>BaseName for FileInfo objects</title><link>http://blogs.msdn.com/b/powershell/archive/2006/06/24/644987.aspx#654694</link><pubDate>Mon, 03 Jul 2006 00:30:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:654694</guid><dc:creator>Windows PowerShell</dc:creator><description>&amp;amp;amp;lt;Edited to add categories&amp;amp;amp;gt;In our active, responsive, and useful newsgroup Microsoft.Public.Windows.PowerShell...&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=654694" width="1" height="1"&gt;</description></item><item><title>re: Leveraging Windows PowerShell Type Extensions to get documentation</title><link>http://blogs.msdn.com/b/powershell/archive/2006/06/24/644987.aspx#648192</link><pubDate>Tue, 27 Jun 2006 09:13:56 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:648192</guid><dc:creator>borota</dc:creator><description>In my customization, I added these 2 lines at the end of script area, to also activate the Internet Explorer window:&lt;br&gt;&lt;br&gt;$ShellObj = New-Object -ComObject WScript.Shell&lt;br&gt;$ShellObj.AppActivate((Get-Process | Where {$_.MainWindowHandle -eq $global:MSDNViewer.HWND}).Id)&lt;br&gt;&lt;br&gt;I wonder if that could be done by just using PowerShell existent cmdlets though.&lt;br&gt;&lt;br&gt;PowerShell is so cooool. I love it! Working with objects at the command line - the idea is just brilliant!&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=648192" width="1" height="1"&gt;</description></item><item><title>Interesting Finds: June 24, 2006 AM edition</title><link>http://blogs.msdn.com/b/powershell/archive/2006/06/24/644987.aspx#645812</link><pubDate>Sat, 24 Jun 2006 18:47:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:645812</guid><dc:creator>Jason Haley</dc:creator><description>&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=645812" width="1" height="1"&gt;</description></item></channel></rss>