RSS All Posts

RSS PowerShell Posts

Tags

2142 Active Directory Administrativia Announcements Battlefield Blogging Cricket Deployment Deployment4 Get-PSUGUK Group Policy HowTo Linux MDT MDT 2010 Microsoft Deployment Toolkit MSDN Music Permissions Personal PowerGui Power Lines PowerShell PowerShell Groups PowerShell Support PowerShell Tools PowerShell V2 Presentations PSUGAU Quick Tips Scripting SDDL Security Tech Talk Ubuntu User Groups Virtualisation VMware Infrastructure Client WAIK Weekly Poll Windows 7 Windows Automation Installation Kit Windows Server 2003 Windows Server 2008 XML

Archives

Meta

Archive for June, 2007

SAPIEN Announces PrimalScript 2007 Beta

Wednesday, June 13th, 2007

I’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 is [...]

Path PowerLine

Thursday, June 7th, 2007

I 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 path statement contains [...]