Add “+47” to mobile field on all users missing it in AD

# Add +47 in “mobile”
$Users = Get-QADUser -SearchRoot “domain/A1/users” -sizelimit 0 | where { $_.mobile.length -eq 8 }

foreach ($user in $users) {
Set-QADUser -id $user -mobile ($user.mobile.insert(0,’+47′))
}

1 thought on “Add “+47” to mobile field on all users missing it in AD

  1. Pingback: terrance

Leave a comment