Office 365 bulk update user photos

  1. 首先使用管理員執行powershell, 然後執行:
Install-Module -Name ExchangeOnlineManagement

Connect-ExchangeOnline -Credential $M365credentials

2. 上面第一行安裝模組,這次用exchangeonline 模組

然後將用戶名,及照片路徑放在user.csv 檔案,如

username,picture

2022@rock.net,c:\2022.jpg

3.接著執行:

Import-csv c:\Pics\user.csv | % { Set-UserPhoto –Identity $_.username -PictureData ([System.IO.File]::ReadAllBytes($_.picture)) -Confirm:$false}

facebook tag photo

facebook tag人相或片真的很簡單,一tag全世界都會看到,不過不是每個人都喜歡被人tag,因為有時侯自己facebook里面的朋友不是個個都熟悉的,不想自己的照片公布在網絡上,如何令自己被別人tag的相片或video不被別人看到呢?方法很簡單,這也是私隱設定中的一項:

進入facebook, setting =>Privacy settings =>Profile information, 你會見到一項:

 Photos and videos of me
Photos and videos you’ve been tagged in

在右手邊的選項 選擇custom, 然後選擇跳出來的Custom privacy選單中選擇Only me 就可以,這樣其他人就不會見到你facebook被人tag的照片或影片了,十分簡單。