[Exchange] RE: PS Script to see if specific DL has had members added recently to offset admins adding wrong people

2015-07-31 Thread Patrick Whiteside
I have a script that runs on a daily basis, it reads the contents of the Domain Admins group and compares it to a master list. If there is a difference between the two it does a compare object and sends the result via email to all our senior admins. It works well but has only highlighted so

[Exchange] RE: PS Script to see if specific DL has had members added recently to offset admins adding wrong people

2015-07-31 Thread Miller Bonnie L .
+1 - we have some locked down ous like this for computer groups we control membership of for licensed software installations. You would need to make sure they don't have permission on the exchange side to add to them as well or they could just do it that way after it fails on the AD side.

Re: [Exchange] PS Script to see if specific DL has had members added recently to offset admins adding wrong people

2015-07-31 Thread Kurt Buff
Something like this might work for you: Send an email with Powershell http://powershell.com/cs/media/p/251.aspx Using the data gathered here: PS C:\BatchFiles $Names = Get-ADGroupMember exadmins | select name PS C:\BatchFiles $LastChanged = Get-ADGroup CriticalGroupName -properties WhenChanged

RE: [Exchange] PS Script to see if specific DL has had members added recently to offset admins adding wrong people

2015-07-31 Thread Alice Goodman
Thanks all for the good suggestions. Between maybe creating a separate OU and doing some PowerShell, I think I can get this handled.. :) Appreciate all of the ideas. Alice -Original Message- From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On Behalf Of