database-tools

Finding AD User Accounts

There are modules and cmdlets to deal with Active Directory tasks, but sometimes it is easier and faster to simply use some .NET code instead. If...

read more

Finding Cmdlets

Get-Command can be used to find cmdlets, but in PowerShell 3.0 it will often return many more cmdlets than expected. Due to module auto-loading,...

read more

What Is Going On Here?

Frequently, you will have PowerShell retrieve data, and then you pick parts of the information and use it in reports. Like here: $serial =...

read more

Password Obfuscator Script

Ever had the need to store a password in a script? Ever needed to automate a credential dialog? First: storing passwords and other confidential...

read more

Finding Scripts by Keyword

With an increasing number of PowerShell scripts on your hard drive, it can become hard to find the script you are looking for. Here's a helper...

read more

Creating Symbolic Links

Symbolic links work very similar to "regular" link files (*.lnk): they can point to virtually any file or folder and even UNC paths....

read more

Creating Hard Links

Hard links are file "phantoms" in the NTFS file system. They make one file visible in multiple file system locations (within one volume)....

read more