我已将 Active Directory 中的每个人的照片设置为属性thumbnailPhoto
。如何将此同步到他们的 Google 个人资料?我目前正在使用 GADS,但找不到执行此操作的任何说明。
问问题
2178 次
2 回答
2
这个脚本对我有用。
Get-ADUser -Filter * -Properties thumbnailphoto, EmailAddress | where {$_.thumbnailphoto} | foreach {$_.thumbnailphoto | Set-Content -Path "C:\Downloads\ADPicture\Pictures\$($_.EmailAddress).jpg" -Encoding Byte}
C:\gam\gam.exe all users update photo C:\Downloads\ADPicture\Pictures\#user#.jpg
于 2014-03-22T18:25:24.197 回答
1
GAM 可以设置头像: https ://github.com/jay0lee/GAM/wiki/ExamplesEmailSettings#user-profile-photos
您需要编写一个脚本,将用户的广告照片提取到文件中,然后通过 GAM 命令将其上传到 Google。
周杰伦
于 2012-11-23T02:51:47.907 回答