I want to create (not backup/restore, for a variety of reasons) Windows Credential Manager entries, for example Samba Share credentials, but others as well.
I do not want to set up PCs manually for this.
Is there a way to create the credentials programmatically? Specifically, I need them to actually show up in the Windows Credential Manager.
I've tried using New-StoredCredential
in Powershell and Get-StoredCredential
and while they both work, they aren't actually showing up in my credential manager (could this be security settig related?)
I am not opposed to doing this via Python outside of Powershell if there is a good library for it that my Googling has been unable to find.
Thanks.