使用批处理脚本访问 Windows 凭据管理器

使用批处理脚本访问 Windows 凭据管理器

我正在尝试访问存储在 Windows 凭据管理器中的 NAS 共享路径凭据。有没有办法直接在批处理脚本中访问这些帐户详细信息。喜欢将批处理脚本与 Windows 凭据管理器集成。

答案1

如果你可以使用 Powershell 脚本代替批处理脚本,那么凭证管理器powershell 包提供了一个 cmdlet Get-StoredCredential,允许您通过名称从凭证管理器获取凭证:

$creds =  Get-StoredCredential -Target 'name-of-credential'

相关内容