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

Browse by Tags

All Tags » Admin Development Method   (RSS)

Scott Hanselman PowerShell video with PowerTab demo on dnrTV!

Scott Hanselman did present a great video episode about Windows PowerShell in Carl Franklin's .NET Rocks TV! ( DrnTV! ) show. DNRTV Episode 82 - PowerShell is still shiny The Hanselmaster is back on dnrTV with a great command shell tool that should have

Hey, PowerShellGuy ! : I have to move files based on date now too !

The Chat did go on while I made Last blog entry PowerShell : the power of REPL, -WhatIf and ScriptBlocks as Parameter when moving files : [22:29] <generalhan> ok now time to work on something a bit harder ! ... [22:29] <generalhan> i have

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

Hey, PowerShell Guy ! How Can I Get the Uptime of a Service?

And another Hey, Scripting Guy ! translation to powerShell How Can I Get the Uptime of a Service? The PowerShell translation : $s = gwmi win32_service - filter " name = 'spooler' " " {0} " - f (( get-date ) - ([wmi] '' ).ConvertToDateTime((gwmi Win32_Process