database-tools

Reversing Text Strings

Here's a simple trick to reverse a text string: $text = 'Hello World' $text = $Text.ToCharArray() [Array]::Reverse($text) -join $text...

Keeping MsgBox On-Top

When you open a MsgBox dialog from PowerShell, the dialog window may sometimes not be visible and instead appears behind the PowerShell or ISE...

Calculate Broadcast Address

If you know the IP address and subnet mask, you can take these and calculate the broadcast address. Here's a function does it for you. Simply...

Finding User Account with WMI

WMI represents all kinds of physical and logical entities on your machine. It also has classes that represent user accounts which include both local...

Resolving URLs

Sometimes you may stumble across URLs like this one: http://go.microsoft.com/fwlink/?LinkID=13517 As it turns out, these are just...