반응형
AD 에 사용자 사진 등록하는 파워쉘
[byte[]]$jpg = Get-Content c:\photo.jpg -encoding byte
$user = [adsi]"LDAP://cn=user1,cn=users,dc=domain,dc=loc"
$user.Properties["jpegPhoto"].Clear()
$null = $user.Properties["jpegPhoto"].Add($jpg)
$user.CommitChanges()
[byte[]]$jpg = Get-Content c:\photo.jpg -encoding byte
$user = [adsi]"LDAP://cn=user1,cn=users,dc=domain,dc=loc"
$user.Properties["jpegPhoto"].Clear()
$null = $user.Properties["jpegPhoto"].Add($jpg)
$user.CommitChanges()
반응형
'IT 관련 이야기 > Windows' 카테고리의 다른 글
windows 8 인증 관련 (0) | 2012.08.16 |
---|---|
directorysearcher.filter 관련 프로그램 작성 시 주의 (0) | 2012.04.17 |
AD 휴지통 사용하기...... (0) | 2011.12.15 |
도메인 컨트롤러 도메인 정보 확인 (0) | 2011.11.08 |
Windows SID 확인 (0) | 2011.03.14 |