Active Directory
A set of directory-based technologies included in Windows Server.
6,419 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Could someone help or point me in the right direction to do the following in PS please?
I need to put populate a field in AD with some txt which will be the same text for a group of users, it needs to add the text to all members of a particular group/
Thanks
I thought I had this worked out, these two commands work when there is one member of the group (when I was testing), but as soon as I add >1 it fails to run.
$Names = Get-AdGroupMember -identity "Staff"
Set-ADUser $Names -MobilePhone "Testing"
Can anyone help with what I have done wrong please?