After fighting the last few weeks trying to get Feedburner to work, I’ve decided to revise a few things. First off, the new RSS feed for my blog is https://jdhitsolutions.com/blog/feed. The old link will remain active but eventually slowly die. But what I really hope you’ll consider is signing up for my mailing list. Yeah,…
More Fun Getting PowerShell User Groups
A few days ago I posted a PowerShell function to retrieve information about PowerShell user groups. That function returned basic group information like this. Each group on the site has its own page which is what that Link property is for. So it didn’t take much work to use the same techniques as my original…
Friday Fun: Get PowerShell User Groups
The other day Don Jones tweeted about find a PowerShell user group. In case you didn’t know, just about every user group associated with PowerShell can be found online at http://powershellgroup.org. This is a terrific resource for finding a user group near you. Of course, Twitter being what it is someone joked about the lack…
PSBlogWeek Ebook and PDF Available
We really appreciate the interest in our PowerShell Blog Week experiment. It was a lot of fun and it seems many of you got something useful out of it as well. I wouldn’t be too surprised if you don’t see another event later this year, most likely with even more contributors. In the mean time,…
Practicing PowerShell in Helsinki
I am very happy to announce that in addition to my appearance at the MVP-AllStars conference on 9 June 2015 in beautiful Helsinki, Finland but that I will be following it with a 2 day, intense PowerShell workshop aimed at Järjestelmänvalvojat (system administrators or IT Pros). I think this is going to be a blast…
Friday Fun: What’s My IP
Today’s Friday Fun is a “quick and dirty” solution to the question, “What is my public IP address?” There are plenty of web sites and services you can visit that will display that piece of information. Naturally I want an easy way to get this in PowerShell. Recently I came across a reference to a…
PowerShell Blogging Week: Supporting WhatIf and Confirm
We hope you are enjoying this experiment in community blogging. In today’s contribution I want to demonstrate how you can add support for WhatIf and Confirm to your advanced PowerShell functions. It is actually quite easy, especially if your function is simply calling other PowerShell commands that already support –Whatif and –Confirm. The recommended best…
Friday Fun: Open Last File in the PowerShell ISE
Over the last few articles I’ve been sharing some shortcuts to get most recently used or edited files. For today’s Friday Fun I thought I’d share something that I use in my PowerShell ISE profile. Whenever I start the ISE, I automatically open the last file I was working on. Instead of launching the ISE…
What PowerShell Script Was I Working On?
Last week I shared a script for finding recently modified files in a given directory. In fact, it wouldn’t be that difficult to find the last files I was working on and open them in the PowerShell ISE. Assuming my Get-RecentFile function is loaded it is a simple as this: get-recentfile -Days 4 -Newest 2…
Friday Fun: Get Recent Files
As you might imagine, I work on a lot of different files throughout the week. Sometimes it is hard to keep everything straight. I’ll want to return to script I was working on yesterday, but I can’t remember what I called it. So I spend a few minutes searching and filtering until I find it….
Send from PowerShell ISE to Microsoft Word Revisited
Many of you seemed to like my little PowerShell ISE add-on to send text from the script pane to a Word document. I should have known someone would ask about a way to make it colorized. You can manually select lines in a script and when you paste them into Word they automatically inherit the…
Pi in the Sky
In celebration of Pi day, I thought I’d post some quick and dirty PowerShell code you can use to calculate pi. I found some easy to follow explanations at http://www.wikihow.com/Calculate-Pi that weren’t too difficult to transform into PowerShell code. And you might even learn something new about PowerShell along the way. Before we begin, I…
Friday Fun: Send PowerShell ISE Content to Word
Yesterday on Facebook, Ed Wilson was lamenting about confusion of keyboard shortcuts between PowerShell and Microsoft Word. I’ve run into the same issue. Muscle memory is strong. Then the discussion turned to getting content from the PowerShell ISE into a Word document. I humorously suggested we had a plugin and it had a Ctrl+C keyboard…
PowerShell Blogging Week is Coming
As I’m sure you are aware there is a lot of great PowerShell goodness online through social media and blogs. Well, I and a few members of the PowerShell community have banded together to add to that goodness. During the week of March 30, look for new daily content from the group. Our topic is…
Friday Fun: Size Me Up
Part of day job involves creating training material, often in the form of video training for Pluralsight or articles for Petri.com. Since I usually am covering PowerShell I often need to capture a PowerShell session. And sometimes I want the screen to be a particular size. So over time I’ve created a few PowerShell tools…