IT STORYs
Microsoft 365 프로필 사진 변경하지 못하도록 설정 본문
PowerShell을 관리자 권한으로 실행합니다.
B번 과정에서 희림 전역관리자 계정을 입력합니다.
아래 과정을 진행하여 현재 사용자는 프로필 사진 변경이 안됩니다.
Set-ExecutionPolicy RemoteSigned Install-Module -Name ExchangeOnlineManagement
$UserCredential = Get-Credential Connect-ExchangeOnline -Credential $UserCredential -ShowProgress $true
SetPhotoEnabled SetPhotoURL --------------- ----------- False |
관리자가 사용자 프로필 사진 변경하는 방법 1 (PowerShell 이용)
https://docs.microsoft.com/en-us/powershell/exchange/exchange-online-powershell-v2?view=exchange-ps Set-ExecutionPolicy RemoteSigned Install-Module -Name ExchangeOnlineManagement Import-Module ExchangeOnlineManagement; Get-Module ExchangeOnlineManagement $UserCredential = Get-Credential Connect-ExchangeOnline -Credential $UserCredential -ShowProgress $true https://docs.microsoft.com/en-us/powershell/module/exchange/set-userphoto?view=exchange-ps Set-UserPhoto -Identity "Paul Cannon" -PictureData ([System.IO.File]::ReadAllBytes("C:\Users\Administrator\Desktop\PaulCannon.jpg")) Identity 로 사용자를 지정할 수 있는 속성은 이름, 메일주소, UPN 등을 사용할 수 있습니다. Remove-UserPhoto -Identity "Ann Beebe" |
관리자가 사용자 프로필 사진 변경하는 방법 2 (M365 관리센터 이용)
|
Comments