Welcome to 2009 - where we've got a LOT of great stuff lined up for you. First of all, our "Monsters of Tech" class in Denver this coming April is still open for registration, and we've lowered the per-student price to just $2,000 for the entire week. Check out the Read the full story »
Features

These ongoing series of articles bring you new content on a weekly, biweekly, or monthly basis. Check back often!

Jack of All Tech

The minimum you need to know about the varied technologies that you support - even though they’re not really your thing.

Just for Fun

A little off-topic, but still eminently interesting: Gadgets, hobbies, contests, giveaways, and whatever pops into our minds.

Musings

Our take on what’s happening in the IT world - and most importantly how we think it’ll affect you. What do YOU think?

Windows Admin

Managing (and automating) Windows servers and desktops, including scripting and Windows PowerShell

Home » Archive by Tags

Articles tagged with: add-member

Weekly Shell: Aliasing Properties Last week I looked at a way to get raw strings into an object by creating a custom property. It's a great way to help bind those strings to a particular cmdlet parameter via pipeline input. But what if your problem is that your input objects have the key data
Weekly Shell: Property Tricks and Parameter Binding One neat thing coming in PowerShell v2 is a lot more cmdlets with -computerName properties, which in many cases accept pipeline input. The trick is in getting the pipeline input to those cmdlets in a way that accomplishes what you want - and it turns out the solution is a
Lunch Lesson: Emitting Objects in PowerShell (aka, the Evolution of Functions) Probably one of the most important things you can learn to do in Windows PowerShell is write scripts and functions that emit not text, but rather emit custom objects. For example, let's take a very simple script that uses WMI to ping a remote computer: $computer = 'server2' $results =