Add to Technorati Favorites
Welcome to ThePowerShellGuy.com Sign in | Join | Help

Browse by Tags

All Tags » object   (RSS)

video of first PowerShell virtual user group with my PowerTab introduction online

Marco Shaw , Posted the "draft version" of the LiveMeeting session : PowerShell Virtual User Group- video from meeting #1--VIDEO ONLINE there are 2 part's in WMV format 3 + 13 MB the first file is the introduction and the latter contains the 3 sessions.

PowerShell examples used on ars technica

Ars technica did an article about PowerShell : Microsoft PowerShell rolled into Longhorn Server In this article two PowerShell examples from my blog are used : How to get the uptime of a specific service: $s = gwmi win32_service -filter "name = 'spooler'"
Posted by admin | 9 Comments
Filed under: , , , ,

Hey PowerShell Guy !,How Can I Parse a Tab-Delimited File and Then Save That as a Comma-Separated Values File?

from the Hey Scripting Guy article : How Can I Parse a Tab-Delimited File and Then Save That as a Comma-Separated Values File? gc tab.txt |% {$_.split("`t") |? {$_ -match '='} |% {$r = new-object object} {$r | add-Member -memberType noteProperty -name