Get-DistributionGroup managed by export-csv – Powershell

Get-DistributionGroup managed by export-csv – Powershell

First step would be import csv with DL names which you would like to check

$List=import-csv “C:\Users\username\Desktop\DLs.csv”

Second would to find the managedby for those DL’s

ForEach ($User in $List){Get-DistributionGroup -Identity $User.name| select name,Managedby | out-gridview}

Vamshi B

View Comments

Recent Posts

How to install Firefox browser using Powershell

How to install of FireFox browser using PowerShell Sometimes you would like to install Firefox…

3 years ago

How to install chrome with Powershell?

Quick way to install chrome on windows with Powershell? Launch the Powershell and run below…

3 years ago

How to Fix PowerShell Script Not Digitally Signed Error?

How to Fix PowerShell Script Not Digitally Signed Error? When a script with a .ps1…

3 years ago

Powershell Cheat Sheet for beginners

Powershell Cheat Sheet for beginners PowerShell has become something of an ace in the hole…

3 years ago

Can you use Linux commands in Powershell?

Today we discuss one of a few questions a lot of sysadmins and IT Admins…

3 years ago

Backing Up an SQL Database with PowerShell

Backing Up an SQL Database with PowerShell Before making any changes in the production environment,…

3 years ago

This website uses cookies.