当我尝试使用以下命令通过Azure门户PowerShell创建新用户时(替换所有值):
New-AzADUser -DisplayName "DisplayName" -MailNickname "email@gmail.com" -UserPrincipalName "UserPrincipalName" -Mail "mail" -MobilePhone "+31000000" -Department "Department"
我得到以下错误:
New-AzADUser: A parameter cannot be found that matches parameter name 'MobilePhone'.
但是reading the docs确实显示了对参数‘mobilephone’的支持。在执行“Get-Help New-AzADUser”时也是如此。
有谁知道这可能是什么原因,以及如何解决它?
亲切的问候
1条答案
按热度按时间tkclm6bt1#
之前的尝试给我带来了同样的问题。
因此,我通过引用MSDoc将参数从
-MobilePhone
修改为-Mobile
PSobject
创建了密码文件:*