Forum Discussion
stamang
Jan 17, 2022Copper Contributor
How to clear AD Users Mobile and Home phone number under the Telephone tab using PowerShell
Hello,
We have multiple users in AD who has a mobile number assigned under the Telephone tab; now, we want to clear the Mobile number for all user.
Is there a PowerShell script that I can use?
Get all users list from AD.
Remove listed users Mobile number
Your help would be much appreciated.
- Ant2022Copper Contributor
Why such difficulties?
simple command:
get-aduser -filter * | set-aduser -mobile $null
or only enabled user:
get-aduser -filter {Enabled -eq "True"} | set-aduser -mobile $null- UsmaanaminCopper Contributor
i have tried both commands on shell. it executes successfully but no impact. phone numbers are not deleted..
any other way?
- $users=get-aduser -filter * -Resultsize 100000
foreach ($user in $users) {
set-aduser $user -clear mobile
}