<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>pspx Wiki Rss Feed</title><link>http://pspx.codeplex.com/</link><description>pspx Wiki Rss Description</description><item><title>Updated Wiki: Home</title><link>http://pspx.codeplex.com/wikipage?version=19</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;&lt;u&gt;&lt;b&gt;About the PowerShell Proxy Extensions Module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;A powerful module that leverages proxy functions and makes it easier than ever to create these powerful extensions to PowerShell. The module allows you to create everything from very simple proxy functions that extend PowerShell to more complex proxy functions that override and extend existing cmdlets.&lt;br /&gt;&lt;br /&gt;The module can be installed automatically by downloading the MSI package or manually by downloading a ZIP file.&lt;br /&gt;&lt;br /&gt;The MSI package will install the module under your Documents folder in the following location:&lt;br /&gt;&lt;br /&gt;%USERPROFILE%\Documents\WindowsPowerShell\Modules\pspx.&lt;br /&gt;&lt;br /&gt;The ZIP file contents need to be manually extracted to one of the paths that is included as part of the PSModulePath environment variable. Typically users will unzip the contents of the ZIP file into the following folder:&lt;br /&gt;&lt;br /&gt;%USERPROFILE%\Documents\WindowsPowerShell\Modules *
&lt;ul&gt;&lt;li&gt;If the directory doesn&amp;#39;t exist then you need to manually create it.&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;PowerShell Compatibility&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;&lt;a href="http://support.microsoft.com/kb/968929"&gt;Windows PowerShell 2.0&lt;/a&gt;&lt;br /&gt;Windows PowerShell 3.0 (currently verified as working on the release preview)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;How to use the module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;
Check if the module is installed correctly, from your PowerShell session type:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
PS &amp;gt; Get-Module -Name pspx -ListAvailable

ModuleType Name                      ExportedCommands
---------- ----                      ----------------
Manifest   pspx                      {}
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;If you don&amp;#39;t see the above result then the module was not installed correctly. &lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;Importing the module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;&lt;pre&gt;
PS &amp;gt; Import-Module pspx

# Get a list of module exported commands.
PS &amp;gt; Get-Command -Module pspx | Format-Table CommandType,Name

CommandType     Name
-----------     ----
Alias           Fix-It
Function        Get-ProxyFunction
Function        New-ProxyFunction
Alias           npx
Alias           proxy
&lt;/pre&gt;&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;Creating proxy functions&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;Many people believe the best way to learn is by example, and I&amp;#39;m no exception. To see what you can do with this module, take a look at the files in the demos folder under the module installation folder.  These files contain commands that can be used to generate proxy functions quickly and easily without having to worry about setting up the functions themselves.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>poshoholic</author><pubDate>Wed, 18 Jul 2012 20:38:40 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120718083840P</guid></item><item><title>Updated Wiki: Home</title><link>http://pspx.codeplex.com/wikipage?version=18</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;&lt;u&gt;&lt;b&gt;About the PowerShell Proxy Extensions Module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;A powerful module that leverages proxy functions and makes it easier than ever to create these powerful extensions to PowerShell. The module allows you to create everything from very simple proxy functions that extend PowerShell to more complex proxy functions that override and extend existing cmdlets.&lt;br /&gt;&lt;br /&gt;The module can be installed automatically by downloading the MSI package or manually by downloading a ZIP file.&lt;br /&gt;&lt;br /&gt;The MSI package will install the module under your Documents folder in the following location:&lt;br /&gt;&lt;br /&gt;%USERPROFILE%\Documents\WindowsPowerShell\Modules\pspx.&lt;br /&gt;&lt;br /&gt;The ZIP file contents need to be manually extracted to one of the paths that is included as part of the PSModulePath environment variable. Typically users will unzip the contents of the ZIP file into the following folder:&lt;br /&gt;&lt;br /&gt;%USERPROFILE%\Documents\WindowsPowerShell\Modules *
&lt;ul&gt;&lt;li&gt;If the directory doesn&amp;#39;t exist then you need to manually create it.&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;Prerequisites&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;&lt;a href="http://support.microsoft.com/kb/968929"&gt;Windows PowerShell 2.0&lt;/a&gt; or later&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;How to use the module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;
Check if the module is installed correctly, from your PowerShell session type:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
PS &amp;gt; Get-Module -Name pspx -ListAvailable

ModuleType Name                      ExportedCommands
---------- ----                      ----------------
Manifest   pspx                      {}
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;If you don&amp;#39;t see the above result then the module was not installed correctly. &lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;Importing the module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;&lt;pre&gt;
PS &amp;gt; Import-Module pspx

# Get a list of module exported commands.
PS &amp;gt; Get-Command -Module pspx | Format-Table CommandType,Name

CommandType     Name
-----------     ----
Alias           Fix-It
Function        Get-ProxyFunction
Function        New-ProxyFunction
Alias           npx
Alias           proxy
&lt;/pre&gt;&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;Creating proxy functions&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;Many people believe the best way to learn is by example, and I&amp;#39;m no exception. To see what you can do with this module, take a look at the files in the demos folder under the module installation folder.  These files contain commands that can be used to generate proxy functions quickly and easily without having to worry about setting up the functions themselves.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>poshoholic</author><pubDate>Wed, 18 Jul 2012 20:37:32 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120718083732P</guid></item><item><title>Updated Wiki: Home</title><link>http://pspx.codeplex.com/wikipage?version=17</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;&lt;u&gt;&lt;b&gt;About the PowerShell Proxy Extensions Module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;A powerful module that leverages proxy functions and makes it easier than ever to create these powerful extensions to PowerShell. The module allows you to create everything from very simple proxy functions that extend PowerShell to more complex proxy functions that override and extend existing cmdlets.&lt;br /&gt;&lt;br /&gt;The module can be installed automatically by downloading the MSI package or manually by downloading a ZIP file.&lt;br /&gt;&lt;br /&gt;The MSI package will install the module under your Documents folder in the following location:&lt;br /&gt;&lt;br /&gt;%USERPROFILE%\Documents\WindowsPowerShell\Modules\pspx.&lt;br /&gt;&lt;br /&gt;The ZIP file contents need to be manually extracted to one of the paths that is included as part of the PSModulePath environment variable. Typically users will unzip the contents of the ZIP file into the following folder:&lt;br /&gt;&lt;br /&gt;%USERPROFILE%\Documents\WindowsPowerShell\Modules *
&lt;ul&gt;&lt;li&gt;If the directory doesn&amp;#39;t exist then you need to manually create it.&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;Prerequisites&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;Windows PowerShell 2.0 &lt;a href="http://support.microsoft.com/kb/968929"&gt;http://support.microsoft.com/kb/968929&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;How to use the module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;
Check if the module is installed correctly, from your PowerShell session type:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
PS &amp;gt; Get-Module -Name pspx -ListAvailable

ModuleType Name                      ExportedCommands
---------- ----                      ----------------
Manifest   pspx                      {}
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;If you don&amp;#39;t see the above result then the module was not installed correctly. &lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;Importing the module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;&lt;pre&gt;
PS &amp;gt; Import-Module pspx

# Get a list of module exported commands.
PS &amp;gt; Get-Command -Module pspx | Format-Table CommandType,Name

CommandType     Name
-----------     ----
Alias           Fix-It
Function        Get-ProxyFunction
Function        New-ProxyFunction
Alias           npx
Alias           proxy
&lt;/pre&gt;&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;Creating proxy functions&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;Many people believe the best way to learn is by example, and I&amp;#39;m no exception. To see what you can do with this module, take a look at the files in the demos folder under the module installation folder.  These files contain commands that can be used to generate proxy functions quickly and easily without having to worry about setting up the functions themselves.&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>poshoholic</author><pubDate>Wed, 18 Jul 2012 20:12:11 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120718081211P</guid></item><item><title>Updated Wiki: Home</title><link>http://pspx.codeplex.com/wikipage?version=16</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;&lt;u&gt;&lt;b&gt;About the PowerShell Proxy Extensions Module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;A powerful module that leverages proxy functions and makes it easier than ever to create these powerful extensions to PowerShell. The module allows you to create everything from very simple proxy functions that extend PowerShell to more complex proxy functions that override and extend existing cmdlets.&lt;br /&gt;&lt;br /&gt;The module can be installed automatically by downloading the MSI package or manually by downloading a ZIP file.&lt;br /&gt;&lt;br /&gt;The MSI package will install the module under your Documents folder in the following location:&lt;br /&gt;&lt;br /&gt;%USERPROFILE%\Documents\WindowsPowerShell\Modules\pspx.&lt;br /&gt;&lt;br /&gt;The ZIP file contents need to be manually extracted to one of the paths that is included as part of the PSModulePath environment variable. Typically users will unzip the contents of the ZIP file into the following folder:&lt;br /&gt;&lt;br /&gt;%USERPROFILE%\Documents\WindowsPowerShell\Modules *
&lt;ul&gt;&lt;li&gt;If the directory doesn&amp;#39;t exist then you need to manually create it.&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;Prerequisites&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;Windows PowerShell 2.0 &lt;a href="http://support.microsoft.com/kb/968929"&gt;http://support.microsoft.com/kb/968929&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;How to use the module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;
Check if the module is installed correctly, from your PowerShell session type:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
PS &amp;gt; Get-Module -Name pspx -ListAvailable

ModuleType Name                      ExportedCommands
---------- ----                      ----------------
Manifest   pspx                      {}
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;If you don&amp;#39;t see the above result then the module was not installed correctly. &lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;Importing the module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;&lt;pre&gt;
PS &amp;gt; Import-Module pspx

# Get a list of module exported commands.
PS &amp;gt; Get-Command -Module pspx | Format-Table CommandType,Name

CommandType     Name
-----------     ----
Alias           Fix-It
Function        Get-ProxyFunction
Function        New-ProxyFunction
Alias           npx
Alias           proxy
&lt;/pre&gt;&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;Using the module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;Many people believe the best way to learn is by example, and I&amp;#39;m no exception. To see what you can do with this module, take a look at the files in the demos folder under the module installation folder.  These files contain commands that can be used to generate proxy functions quickly and easily without having to worry about setting up the functions themselves.&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>poshoholic</author><pubDate>Wed, 18 Jul 2012 20:11:44 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120718081144P</guid></item><item><title>Updated Wiki: Home</title><link>http://pspx.codeplex.com/wikipage?version=15</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;&lt;u&gt;&lt;b&gt;About the PowerShell Proxy Extensions Module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;A powerful module that leverages proxy functions and makes it easier than ever to create these powerful extensions to PowerShell. The module allows you to create everything from very simple proxy functions that extend PowerShell to more complex proxy functions that override and extend existing cmdlets.&lt;br /&gt;&lt;br /&gt;The module can be installed automatically by downloading the MSI package or manually by downloading a ZIP file.&lt;br /&gt;&lt;br /&gt;The MSI package will install the module under your Documents folder in the following location:&lt;br /&gt;&lt;br /&gt;%USERPROFILE%\Documents\WindowsPowerShell\Modules\pspx.&lt;br /&gt;&lt;br /&gt;The ZIP file contents need to be manually extracted to one of the paths that is included as part of the PSModulePath environment variable. Typically users will unzip the contents of the ZIP file into the following folder:&lt;br /&gt;&lt;br /&gt;%USERPROFILE%\Documents\WindowsPowerShell\Modules *
&lt;ul&gt;&lt;li&gt;If the directory doesn&amp;#39;t exist then you need to manually create it.&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;Prerequisites&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;Windows PowerShell 2.0 &lt;a href="http://support.microsoft.com/kb/968929"&gt;http://support.microsoft.com/kb/968929&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;How to use the module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;
Check if the module is installed correctly, from your PowerShell session type:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
PS &amp;gt; Get-Module -Name pspx -ListAvailable

ModuleType Name                      ExportedCommands
---------- ----                      ----------------
Manifest   pspx                      {}
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;If you don&amp;#39;t see the above result then the module was not installed correctly. &lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;Importing the module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;&lt;pre&gt;
PS &amp;gt; Import-Module pspx

# Get a list of module exported commands.
PS &amp;gt; Get-Command -Module pspx | Format-Table CommandType,Name

CommandType     Name
-----------     ----
Alias           Fix-It
Function        Get-ProxyFunction
Function        New-ProxyFunction
Alias           npx
Alias           proxy
&lt;/pre&gt;&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;Using the module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;Many people believe the best way to learn is by example, and I&amp;#39;m no exception. To see what you can do with this module, take a look at the files in the demos folder under the module installation folder.  These files contain commands that can be used to generate proxy functions quickly and easily without having to worry about setting up the functions themselves.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>poshoholic</author><pubDate>Wed, 18 Jul 2012 20:11:32 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120718081132P</guid></item><item><title>Updated Wiki: Home</title><link>http://pspx.codeplex.com/wikipage?version=14</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;&lt;u&gt;&lt;b&gt;About the PowerShell Proxy Extensions Module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;A powerful module that leverages proxy functions and makes it easier than ever to create these powerful extensions to PowerShell. The module allows you to create everything from very simple proxy functions that extend PowerShell to more complex proxy functions that override and extend existing cmdlets.&lt;br /&gt;&lt;br /&gt;The module can be installed automatically by downloading the MSI package or manually by downloading a ZIP file.&lt;br /&gt;&lt;br /&gt;The MSI package will install the module under your Documents folder in the following location:&lt;br /&gt;&lt;br /&gt;%USERPROFILE%\Documents\WindowsPowerShell\Modules\pspx.&lt;br /&gt;&lt;br /&gt;The ZIP file contents need to be manually extracted to one of the paths that is included as part of the PSModulePath environment variable. Typically users will unzip the contents of the ZIP file into the following folder:&lt;br /&gt;&lt;br /&gt;%USERPROFILE%\Documents\WindowsPowerShell\Modules *
&lt;ul&gt;&lt;li&gt;If the directory doesn&amp;#39;t exist then you need to manually create it.&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;Prerequisites&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;Windows PowerShell 2.0 &lt;a href="http://support.microsoft.com/kb/968929"&gt;http://support.microsoft.com/kb/968929&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;How to use the module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;
Check if the module is installed correctly, from your PowerShell session type:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
PS &amp;gt; Get-Module -Name pspx -ListAvailable

ModuleType Name                      ExportedCommands
---------- ----                      ----------------
Manifest   pspx                      {}
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;If you don&amp;#39;t see the above result then the module was not installed correctly. &lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;Importing the module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;&lt;pre&gt;
PS &amp;gt; Import-Module pspx

# Get a list of module exported commands.
PS &amp;gt; Get-Command -Module pspx | Format-Table CommandType,Name

CommandType     Name
-----------     ----
Alias           Fix-It
Function        Get-ProxyFunction
Function        New-ProxyFunction
Alias           npx
Alias           proxy
&lt;/pre&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>poshoholic</author><pubDate>Wed, 18 Jul 2012 20:02:05 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120718080205P</guid></item><item><title>Updated Wiki: Home</title><link>http://pspx.codeplex.com/wikipage?version=13</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;&lt;u&gt;&lt;b&gt;About the PowerShell Proxy Extensions Module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;A powerful module that leverages proxy functions and makes it easier than ever to create these powerful extensions to PowerShell. The module allows you to create everything from very simple proxy functions that extend PowerShell to more complex proxy functions that override and extend existing cmdlets.&lt;br /&gt;&lt;br /&gt;The module can be installed automatically by downloading the MSI package or manually by downloading a ZIP file.&lt;br /&gt;&lt;br /&gt;The MSI package will install the module under your Documents folder in the following location:&lt;br /&gt;&lt;br /&gt;%USERPROFILE%\Documents\WindowsPowerShell\Modules\pspx.&lt;br /&gt;&lt;br /&gt;The ZIP file contents need to be manually extracted to one of the paths that is included as part of the PSModulePath environment variable. Typically users will unzip the contents of the ZIP file into the following folder:&lt;br /&gt;&lt;br /&gt;%USERPROFILE%\Documents\WindowsPowerShell\Modules *
&lt;ul&gt;&lt;li&gt;If the directory doesn&amp;#39;t exist then you need to manually create it.&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;Prerequisites&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;Windows PowerShell 2.0 &lt;a href="http://support.microsoft.com/kb/968929"&gt;http://support.microsoft.com/kb/968929&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;How to use the module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;
Check if the module is installed correctly, from your PowerShell session type:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;
PS &amp;gt; Get-Module -Name pspx -ListAvailable

ModuleType Name                      ExportedCommands
---------- ----                      ----------------
Manifest   pspx                      {}
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;If you don&amp;#39;t see the above result then the module was not installed correctly. &lt;br /&gt;
&lt;h1&gt;&lt;u&gt;&lt;b&gt;Importing the module&lt;/b&gt;&lt;/u&gt;&lt;/h1&gt;&lt;pre&gt;
PS &amp;gt; Import-Module pspx

# Get a list of module exported commands.
PS &amp;gt; Get-Command -Module pspx | Format-Table CommandType,Name

CommandType     Name
-----------     ----
Alias           ...
Function        Export-Csv
Alias           Fix-It
Function        Get-ChildItem
Function        Get-Help
Function        Get-MamlHelp
Function        Get-ProxyFunction
Function        Get-PSCallStack
Function        Get-Service
Alias           gpx
Function        help
Function        New-ProxyFunction
Alias           npx
Alias           prop
Alias           proxy
Function        Select-Property
&lt;/pre&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>poshoholic</author><pubDate>Wed, 20 Jun 2012 03:41:48 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120620034148A</guid></item></channel></rss>