ContributeMost Recent Contributions (feed)
- HttpRest 1.0.1
- 24 hours ago
-
Added Get-WebPageContent to the initial implementation of the Http REST script functions (usable as a v1 script or as a module).
Documentation on this post on HuddledMasses
- ISE-Snippets
- 47 hours ago
-
ISE-Snippets module v 1.0
DEVELOPED FOR CTP3See comments for each function for changes …
As a shortcut for every snippet would be to much, I created Add-Snippet which presents a menu.
Feel free to add your own snippets to function Add-Snippet but please contribute your changes hereProvides Code Snippets for working with ISE
Add-Snippet – Presents menu for snippet selection
Add-SnippetToEditor – Adds a snippet at caret position
- Get-ChildItemProxy
- 2 days ago
-
This is an advanced function that uses a proxy command to add two new switches to get-childitem
You can name this function get-childitem and it will overwrite the existing cmdlet.
With Proxy Commands, you can mess with the meta data and add/subtract parameters from real cmdlets
Most of this code was generated with Jeffrey Snover’s new Metaprogramming Module
http://blogs.msdn.com/powershell/archive/2009/01/04/extending-and-or-modifing-commands-with-proxies.aspx
http://www.get-powershell.com
- ISE-Lines
- 2 days ago
-
ISE-Lines module v 1.1 ( Conflate-Line improved )
DEVELOPED FOR CTP3Provides Line cmdlets for working with ISE
Duplicate-Line – Duplicates current line
Conflate-Line – Conflates current and next line
MoveUp-Line – Moves current line up
MoveDown-Line – Moves current line down
Delete-TrailingBlanks – Deletes trailing blanks in the whole script
- Get-PipeLineObject
- 2 days ago
-
For TabExpansion.ps1
this requires latest TabExpansion.ps1 in a same directory
- TabExpansion
- 2 days ago
-
Ported TabExpansion from V2CTP2 to v1.0 and extended.
Update:Parameter expansion for function, filter and scripts
man -f<tab>
‘param([System.StringSplitOptions]$foo,[System.Management.Automation.ActionPreference]$bar,[System.Management.Automation.CommandTypes]$baz) {}’ > foobar.ps1
.\foobar.ps1 -<tab> -b<tab>Enum expansion for function, filter and scripts parameter (this doesn’t work latest V2 CTP)
.\foobar.ps1 -foo rem<tab> -bar <tab><comma>c<tab><comma>sc<tab> -ea silent<tab> -wa con<tab>Enum expansion for assignment expression
$ErrorActionPreference =<space><tab>
$cmdtypes = New-Object System.Management.Automation.CommandTypes[] 3
$cmdtypes =<space><tab><comma><space>func<tab><comma><space>cmd<tab> -as<space><tab>Better ‘$_.’ expansion for Get-Item and Get-Command and a expression of only a variable
$data = Get-Process; $data[2,4,5] | % { $_.<tab>
gi hkcu:\ | % { $_.subkey<tab>
gcm powershell.exe | % { $_.file<tab> *this requires latest Get-PipeLineObject.ps1 in a same directory
- ISE-CopyOutPutToEditor
- 2 days ago
-
Some of the new ISE custom menue functions only work in the editor pane and not in the output. If you have something in the output that you want to use, just copy it to a fresh editor pane. You can even save it, if you want. Nobody said, that only valid PowerShell scripts can be edited by ISE
- PowerShell Template
- 2 days ago
-
I’ve modified the original function. I like this one better.
- running regions in ISE
- 3 days ago
-
scripting for running regions by hotkeys in powershell v2 CTP3 ISE. http://www.karlprosser.com/coder
- [CTP3] Invoke-ISE
- 3 days ago
-
A little starter for ISE using advanced functions
PowerShell Code Repository