Archive for June, 2007
SAPIEN Announces PrimalScript 2007 Beta
Wednesday, June 13th, 2007I’ve always been quite a fan of PrimalScript. I found it to be the best IDE for VBScript development and it has been updated previously to support PowerShell. Admittedly I couldn’t justify the expense of purchasing a copy for my PowerShell scripting alone, as the Tab Completion from MoW, and the built in Shell Intellisense [...]
Path PowerLine
Thursday, June 7th, 2007I am constantly impressed by how quick you can get the job done with PowerShell. As I have mentioned before one-liners, or PowerLines as I prefer ;) are a good example, although not always practical. So here’s my PowerLine for the day: if (! ($env:path).contains("C:\coding") ) { $env:path+= ";C:\coding" } This basically checks if the [...]