AntiMalware Status

Add SMTP-ProxyAddress to users in AD with PowerShell

Here is a quick way to add new SMTP/ProxyAddress for the users in Active Directory with use of PowerShell. Create a csv file with two…

View More Add SMTP-ProxyAddress to users in AD with PowerShell
AntiMalware Status

PowerShell – AD Group management

Here are few quick one liners such as add user to 2 AD groups at same time: "Managers","SalesRep" | Add-ADGroupMember -Members ` (Read-Host -Prompt "Enter…

View More PowerShell – AD Group management
AntiMalware Status

Check status of Microsoft AntiMalware

Here is a quick snippet to show current status of Microsoft Antimalware on your Windows 10 computer. Clear-Host Write-Host Write-Host "CURRENT STATUS " -Foregroundcolor yellow…

View More Check status of Microsoft AntiMalware
AntiMalware Status

Check if user is member of the group

Here is another quick PowerShell script to check if user is a member of given group. Clear-Host if (Get-Module -ListAvailable -Name ActiveDirectory) { Import-Module ActiveDirectory…

View More Check if user is member of the group
AntiMalware Status

Get list of Departments and number of users per Department in PowerShell

I need to create a report from Active Directory. I need to provide list of all Departments and headcount per Department. Here is quick PowerShell…

View More Get list of Departments and number of users per Department in PowerShell
AntiMalware Status

List users from 3 different Active Directory Groups with PowerShell

Here is a quick sample of Power Shell snippet to list users from 3 different Active Directory groups: Import-Module ActiveDirectory $groups = "AWS-IAM-PCI-Prod-Admin","AWS-IAM-PCI-Prod-Deploy","AWS-IAM-PCI-Prod-Monitoring" foreach($group in…

View More List users from 3 different Active Directory Groups with PowerShell
AntiMalware Status

Find out the current version of the Active Directory Schema

Quick one liner to find out current version of the Active Directory Schema on your network especially of you have mix of servers. Using dsquery…

View More Find out the current version of the Active Directory Schema