你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Set-AzureADMSUser
更新用户。
语法
Set-AzureADMSUser
-Id <String>
[-DisplayName <String>]
[-CustomSecurityAttributes <Object>]
[-UserPrincipalName <String>]
[<CommonParameters>]
说明
更新 Azure Active Directory (AD) 中的用户。
示例
示例 1
PS C:\> $user = Get-AzureADMSUser -UserPrincipalName TestUser@example.com
PS C:\> $user.DisplayName = 'YetAnotherTestUser'
PS C:\> Set-AzureADMSUser -UserPrincipalName TestUser@example.com -Displayname $user.Displayname
更新用户。
示例 2
PS C:\> $attributes = @{
Engineering = @{
"@odata.type" = "#Microsoft.DirectoryServices.CustomSecurityAttributeValue"
"Project@odata.type" = "#Collection(String)"
Project = @("Baker","Cascade")
}
}
PS C:\> Set-AzureADMSUser -Id dbb22700-a7de-4372-ae78-0098ee60e55e -CustomSecurityAttributes $attributes
向用户分配具有多字符串值的自定义安全属性。
- 属性集:
Engineering
- 属性:
Project
- 属性数据类型:字符串集合
- 属性值:
("Baker","Cascade")
示例 3
PS C:\> $attributesUpdate = @{
Engineering = @{
"@odata.type" = "#Microsoft.DirectoryServices.CustomSecurityAttributeValue"
"Project@odata.type" = "#Collection(String)"
Project = @("Alpine","Baker")
}
}
PS C:\> Set-AzureADMSUser -Id dbb22700-a7de-4372-ae78-0098ee60e55e -CustomSecurityAttributes $attributes
使用用户的多字符串值更新自定义安全属性。
- 属性集:
Engineering
- 属性:
Project
- 属性数据类型:字符串集合
- 属性值:
("Alpine","Baker")
参数
-CustomSecurityAttributes
用户的自定义安全属性。
类型: | Object |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DisplayName
指定用户的显示名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Id
指定 Azure AD 中用户的 ID。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-UserPrincipalName
指定 Azure AD 中用户的用户主体名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |