你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Set-AzureADUserThumbnailPhoto
为用户设置缩略图
语法
Set-AzureADUserThumbnailPhoto
[-ObjectId <String>]
-FilePath <String>
[<CommonParameters>]
Set-AzureADUserThumbnailPhoto
[-ObjectId <String>]
-FileStream <Stream>
[<CommonParameters>]
Set-AzureADUserThumbnailPhoto
[-ObjectId <String>]
-ImageByteArray <Byte[]>
[<CommonParameters>]
说明
此 cmdlet 用于设置用户的缩略图
示例
示例 1
PS C:\WINDOWS\system32> Set-AzureADUserThumbnailPhoto -ObjectId ba6752c4-6a2e-4be5-a23d-67d8d5980796 -FilePath D:\UserThumbnailPhoto.jpg
本示例将使用 PObjectId 参数指定的用户的缩略图照片设置为使用 FilePath 参数指定的图像
参数
-FilePath
要作为用户缩略图照片上传的图像的文件路径
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-FileStream
包含用户缩略图照片的文件流
类型: | Stream |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ImageByteArray
包含用户缩略图照片的图像字节数组
类型: | Byte[] |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ObjectId
为其设置了用户缩略图照片的用户的对象 ID
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
输入
System.IO.Stream System.Byte[]