PowerShell ISE addon GUI for importing and removing modules
I (@ravikanth) & Bernd have been working on reviving the PSISECream codeplex project. We are trying to improve a few modules that are already a part of this project and adding new modules as...
View ArticleOne click import of PowerShell module-sets from an ISE addon menu
It has been a while since I last blogged and also there are several PowerShell projects I kept on hold. One of that is an ISE addon to import module-sets from an addon menu option. By saying module...
View ArticleOn-demand import of SharePoint 2010 cmdlets within PowerShell ISE
I did not plan to write this post but a few blog posts around using SharePoint 2010 cmdlets within PowerShell ISE made me put my thoughts in to this. Last month, I published a post around using...
View ArticleSend content to PasteBin using PowerShell
PasteBin.com is a good way to share scripts with others. Over there, you can just paste scripts written in almost any language and select the language for syntax highlighting. The interesting part here...
View ArticlePasteBin.com WPF addon for PowerShell ISE
In my last post, I showed you a teaser of an upcoming post. So, this post is about the PowerShell ISE and PowerGUI 2.1 Script Editor (PGSE) addon for uploading code to PasteBin.com. This happens to be...
View ArticleAdding header to newly created scripts in PowerShell ISE
Here is a simple function that you can use to add a script header everytime you create a new script file in PowerShell ISE. Jeff Hicks posted a function to create an addon menu option to do this. What...
View ArticlePowerShell ISE addon menu generator
This is yet another ISE addon I have been using for quite sometime. I polished it a bit so that I can share it here with you all. This addon lets you create addon menu items easily. Without this, I...
View ArticlePowerShell ISE Addon: Get-History GUI
Ok, that is a weird blog post title. I could not think of a better one for this post. Anyway, coming to the subject and as I mentioned earlier, I have several PowerShell ISE addons that I use on a...
View ArticlePowerShell ISE addon menu generator – The ShowUI way
Update: @Jaykul was kind enough to review this code and post an updated (and better) version of this addon with guidelines & best practices. Don’t forget to read the first few lines of text on that...
View ArticleA simple PowerShell script explorer addon using ShowUI
Update: The select-ViaUI function is no more in ShowUI module starting version 1.2. So, if you plan to run this, you need to go back to ShowUI 1.1. Okay, there is nothing really fancy here. This is all...
View ArticlePowerShell ISE Addon: Go to cursor
I have a few scripts that are thousands of lines long. When working with these scripts in ISE, I often start modifying some part of the code and then use scroll bar to move up and down to refer to...
View ArticlePowerShell ISE v3 (CTP2) addon: Go to Input
This short post shows yet another ISE addon to quickly move to the ISE v3 combined pane input section.
View ArticlePowerShell ISE Addon: Reset all ISE preferences
Ever since PowerShell v3.0 CTP build got released, I am using ISE as my primary script editor. I keep changing preferences such as colors, etc. The new feature in ISE v3 remembers the changes made to...
View ArticlePowerShell ISE Addon: Search all open script files
In this post, I show you a PowerShell ISE addon I created to search across all open ISE files and across all PowerShell tabs.
View ArticlePowerShell ISE Addon: Yet another ISE function explorer
Fellow PowerShell MVP Jeff Hicks posted a nice script to find all functions and filters in an ISE script and show the same in a GUI dialog. Jeff used Regex to figure out the function and filter...
View ArticlePowerShell ISE Addon: Validate and Format XML
I have been playing with XML documents a lot these days and at times I find myself dealing with a few pages long XML data. The most frustrating part is the un-formatted and invalid XML. May times, I...
View ArticlePowerShell ISE Addon: ISE Function Explorer using the PowerShell 3.0 parser
Last month, I wrote here about an ISE addon that used PowerShell Tokenizer and Out-GridView cmdlet to show all the functions available in a script in PowerShell ISE. After that, Jason Shirk -- a...
View Article