database-tools

Removing AD Group Members

Module ActiveDirectory To remove one or many users from an Active Directory group, try this approach: $user = @() $user += Get-ADUser -Filter { Name...

read more

NULL Values in Arrays

All PowerShell versions Whenever you assign NULL values to array elements, they will count as array elements, but will not be output (after all,...

read more

Finding Out Windows Version

All PowerShell Versions Do you own Windows 8.1 Basic, Pro, or Enterprise? Finding out the Windows version is easy. Finding out the exact subtype is...

read more

Converting Error Numbers

All PowerShell Versions Error numbers that are returned by Windows API calls often appear as very large negative numbers. To give meaning to these...

read more