Browse by Tags

All Tags » Tips and Tricks » Powershell (RSS)

2008 Scripting Games - My solutions

Here are my solutions to the 2008 Scripting Games scripting competition. This is a rather large post but I decided one post would be better than posting them all individually, this way they will all be in one place when I want to find them later. I had...

Powershell version of cmd set

If you are like me and are just so used to typing set to list and set environment variables then you might find this script useful. if ( test-path alias:set) { remove-item alias:set > $null } function set { [string] $var = $args if ( $var -eq "" )...
More Posts