Post

Active Directory Toplu Attribute Değiştirilmesi

Get-aduser -SearchBase “ou=test1,dc=guler,dc=com” -filter * -properties taahhut | where {($_.taahhut -eq $notset)} | Select-Object sAMAccountName,taahhut| Export-Csv C:\personel.csv -NoTypeInformation -Encoding UTF8  
#Burada test OU'su içerisindeki "taahhutleri notset olan" userler "personel.csv" dosyasina export edilir.

# "{($_.taahhut -eq $notset)}" bu kisimdaki "notset" kismi ilk asamada ne ise o yazilmalidir.

Import-Csv -Path C:\personels.csv | ForEach {Set-ADUser $_.sAMAccountName -Replace @{taahhut=$true}}
# burada ise kullanicilar okunup atributeleri degistirilir. (true yada false)
This post is licensed under CC BY 4.0 by the author.