Check if user is member of the group
Here is another quick PowerShell script to check if user is a member of given group. [cc lang="PowerShell"] Clear-Host if (Get-Module -ListAvailable -Name ActiveDirectory) { Import-Module ActiveDirectory } else {…
