有没有一种方法可以在 Windows 10 中以编程方式添加 Web 凭据?

问题描述 投票:0回答:2

有没有一种方法可以以编程方式添加网络凭据 Windows 10?我已经搜索了一段时间,我发现的唯一方法是使用

VaultCmd
,它在 Windows 10 上不起作用。

关于如何使用 PowerShell、注册表或其他方式在 Windows 10 中添加 Web 凭据有什么想法吗?

windows powershell windows-10 registry credential-manager
2个回答
4
投票

我能够让 VaultCmd 在 Windows 10 中工作:

VaultCmd /addcreds:"Web Credentials" /credtype:"Windows Web Password Credential" /identity:"username on website" /authenticator:"password on website" /resource:"https://WebSiteURL"

请注意,

/addcreds:
/credtype:
的参数区分大小写。


0
投票

从 @WaitingForGuacamole 运行命令导致错误:

Invalid schema: Element not found.

下面的命令有效,我通过运行

VaultCmd /addcreds /?

得到了这个例子
vaultcmd /addcreds:"Web Credentials" /credtype:{3CCD5499-87A8-4B10-A215-608888DD3B55} /identity:TestCred /authenticator:Test /resource:server /savedBy:Test
© www.soinside.com 2019 - 2024. All rights reserved.