Showing related tags and posts accross the entire site.
-
Keith posted a console app he created to determine the processes that are running .NET applications. I got thinking that this type of "utility" apps are perfect for PowerShell. So I took Keith's code and made an equivalent powershell script. $dotnet = @() $procs = get-process foreach ($proc in $procs...
-
This is my first blog post using Windows Live Writer . Setting up WLW to post to devpinoy was a great experience. All I had to do was give it the URL for my blog [http://community.devpinoy.org/blogs/velocity] and my username + password and it will try to guess the web blog provider as well as download...
-
PowerGadgets has just added a whole new level of "extending" PowerShell. Imagine providing charting facilities to a scripting language, all through its extensibility using .NET. Already I can image using PowerShell to drive build scripts and "visualize" the red/green status of builds. Let's see if this...