database-tools

Listing "Real" Hard Drives

WMI can provide lots of information about a system, but sometimes it is just a bit too much. So when you query for logical disks, you often get back...

read more

Monitoring Log Files

Beginning in PowerShell 3.0, it is easy to monitor text-based log files in real-time. Try this: $Path = "$home\Desktop\testfile.txt"...

read more

Keyboard Trick

In the PowerShell ISE 4.0 command pane, when you hold CTRL, you can then use ArrowUp to move out of the command line into the results area. ReTweet...

read more

Capitalizing Words

To correctly capitalize words (making sure the first character is capitalized), you can either use regular expressions or a little system function....

read more