通过powershell更新azure企业应用程序/SP注释字段

发布于 2025-01-11 16:48:47 字数 269 浏览 0 评论 0原文

我相信在 2020 年,有人提到无法通过 Powershell 更新 Azure 企业应用程序属性刀片中的注释字段。

有谁知道你现在是否/如何可以做到这一点?

我唯一注意到的是下面的代码。当我运行它时它不会出错,但它也不会更新注释字段:

Update-AzADServicePrincipal -ObjectId $objectId -Note "test Notes" # Update Notes field

任何帮助将不胜感激。

此致, 富有的。

I believe in 2020 it was mentioned the ability to update the notes field within the properties blade of an Azure Enterprise Application was not available via Powershell.

Does anyone know if/how you can do this now?

The only thing I have noticed is the following code. It does not error when I run it but it also does not update the notes field:

Update-AzADServicePrincipal -ObjectId $objectId -Note "test notes" # Update Notes field

Any help would be greatly appreciated.

Best Regards,
Rich.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

动次打次papapa 2025-01-18 16:48:47

我相信在 2020 年,有人提到了更新注释的能力
Azure 企业应用程序的属性边栏选项卡中的字段
无法通过 PowerShell 使用。

现在我们可以使用 PowerShell

请按照以下解决方法进行操作

我正在使用以下命令来更新Note 字段Azure 企业应用程序

注意:使用有效的对象 ID

    Update-AzADServicePrincipal -ObjectId $objectId -Note "test notes updated"

在此处输入图像描述

执行命令后,您必须刷新 Azure 门户并检查属性边栏选项卡。

刷新门户后属性刀片中的更新结果

在此处输入图像描述

I believe in 2020 it was mentioned the ability to update the Note
Field within the properties blade of an Azure Enterprise Application
was not available via PowerShell.

Now we can update the Note Field in Azure Enterprise Application using PowerShell

Please follow the below workaround

I am using the below command to update the Note Field in Azure Enterprise Application

Note: Use a valid Object Id

    Update-AzADServicePrincipal -ObjectId $objectId -Note "test notes updated"

enter image description here

After executing Command you have to refresh the Azure portal and check the Property blade.

Updated Result in Property blade After Refresh the portal

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文