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? G...
Ant2022
Jan 19, 2022Copper 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
- UsmaanaminDec 19, 2024Copper Contributor
i have tried both commands on shell. it executes successfully but no impact. phone numbers are not deleted..
any other way?