Trace Route

For some reason I wanted to write a trace route script in PowerShell, but decided to run it through Google first to see if it had been done. Surprisingly few results came up, and as far as I can tell, only one true PowerShell script doing Trace Route without just being a wrapper for tracert or something similar: http://josherickson.org/75/traceroute-with-starting-ttls/ Naturally I wanted to tweak it and give it my personal touch, and here is my result Read more [...]

Ping x 3

Often when running WMI queries against a set of computers, the total script execution time can be quite long. Especially if there are computers that are unreachable, as the default WMI timeout is quite long. Therefore it's always smart to do a ping check first, so that you only run the WMI query against a computer you have verified is reachable. I'm going to show you three different ways of doing ping check using PowerShell. For this test I'm pinging google.com and I'm only after a true/false Read more [...]

Third-Party Commenting Systems for WordPress

When talking about third-party commenting systems for WordPress, there are three alternatives that usually come up: Disqus IntenseDebate Livefyre I want to talk about what they add to your blog. No, I'm not talking about features - you can read about that yourself on their respective homepages. I'm talking about overhead! The more you throw at your poor web server the longer it will take to process and serve it, and the user will be sitting longer waiting for the page to load. Being Read more [...]

Linode Arch Linux – Part 1

Introduction Welcome to my blog series where I will show you how to sett up a self-hosted single-site WordPress blog on a Linode running Arch Linux. Prerequisites Domain Name Linode Virtual Server SSH Client Deploy New Server The first thing we have to do is to deploy our new server. Start by logging into the Linode Manager and go to the dashboard of your Linode. (Note: If you haven't done so already, you might have to choose the location of your Linode first.) Click on "Deploy Read more [...]

PowerShell Default Alias List

I'm a firm believer in NOT using aliases in scripts, but you will still find it being used in scripts all over the net. Now, I know you can get this list yourself using the command Get-Alias , but if you find yourself without access to a PowerShell console, here it is anyway :) This is the default aliases in PowerShell v2. Read more [...]

Get-DiskInfo

This rather simple script will take one or more, local or remote, computer(s) as input and return an object with disk volume information. Should be easy enough to understand, but I'll try to add some get-help stuff to it later. Read more [...]