gpt4 book ai didi

azure - New-AzureRmADSpCredential 永不过期的密码

转载 作者:行者123 更新时间:2023-12-04 21:30:55 24 4
gpt4 key购买 nike

不确定这是否是我使用它的方式的错误或问题,但基本上我正在尝试使用 New-AzureRmADSpCredential 将未过期的密码添加到现有的 Azure 服务主体,但无论我向 -EndDate 提供什么参数它永远不会生效(始终设置为 1 年后过期)

示例步骤是:

$start = get-date
$end = $start.AddYears(99)
New-AzureRmADServicePrincipal -DisplayName SPTestnonExpirePW
$sp = Get-AzureRmADServicePrincipal -DisplayName "SPTestnonExpirePW"
New-AzureRmADSpCredential -ObjectId $sp.id -StartDate $start -EndDate $end -Password (ConvertTo-SecureString -String "PASSWORD" -Force -AsPlainText)

无论我向 -EndDate 提供什么值(只要它是有效的 System.DateTime),密码都会成功创建,但有效期为 1 年

我已经在 Linux 上的 PS 核心和服务器 2016 上的 PS native 上尝试过此操作

最佳答案

经过大量搜索和测试,我得到了与您相同的结果,根据 postman 的测试,我同意这可能是 New-AzureRmADSpCredential 密码的错误。

此外,如果您想实现凭据永不过期,您可以尝试使用 New-AzureRmADAppCredential 来实现。

注意:这里的ObjectId不是您的ServicePrincipal objectid,它是应用程序注册 objectId,即与 ServicePrincipal 具有相同的名称。

$start = get-date
$end = $start.AddYears(150)
$SecureStringPassword = ConvertTo-SecureString -String "password" -AsPlainText -Force
New-AzureRmADAppCredential -ObjectId xxxxxxxxxxxxxxxxxxx -StartDate $start -EndDate $end -Password $SecureStringPassword

enter image description here

关于azure - New-AzureRmADSpCredential 永不过期的密码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51721017/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com