Use PowerShell
The Shell Is Calling
The Shell Is Calling
This user hasn't shared any biographical information
Homepage: http://www.usepowershell.com
Jabber/GTalk: steven.murawski@gmail.com
August 13, 2011 - 9:50 am
Posted in CommandAssist, Modules, Scripts | No comments
This is the the meat of CommandAssist module, providing a contextual assistant to supplying the right parameters to a command. Getting to the Meat of It In the last post, we created a proxy module for ActiveDirectory module, so what does that really get for us? Starting off in a new shell, I’ve imported the [...]
August 13, 2011 - 9:06 am
Posted in CommandAssist, Modules, Scripts | 1 comment
The CommandAssist module allows you to easily create proxies functions for every command in a module (or snapin). There is a handy command to generate these proxy modules included with the CommandAssist module. Building an Assisted Module The easiest way to explain what happens is to walk through the usage of New-AssistedModule. To that end, [...]
August 8, 2011 - 9:00 am
Posted in CommandAssist, Modules | No comments
To use CommandAssist, the first step you will need to take is to have ShowUI (at least 1.1) installed and run PowerShell in STA mode. Then, you can import CommandAssist. After importing CommandAssist, you can take advantage of the scriptblock builder built in to Where-Object Get-ChildItem | Where-Object -assist When you hit enter, you will [...]
August 4, 2011 - 4:41 pm
Posted in CommandAssist, Modules | 4 comments
CommandAssist is a new module designed to provide some graphical help for people who are new to PowerShell or just not as comfortable on the command line. CommandAssist relies on ShowUI, so go get it now! What’s There Now The first three functions in this module are: Show-ParameterAssist New-AssistedModule Where-Object (with an updated –Assist parameter) [...]