You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the old Cmdlets Set-KP... I was able to modify an entry including custom values via $kpentry.Strings and persist them to the database. I cannot find a way to do that with the 'new' *-KeePass* Cmdlets.
Update-KeePassEntry only takes the uuid from the passed entry object and updates the values specified in parameters but ignores everything else inside the passed entry object. :(
Old way that worked:
$entry.Strings.Set('Custom Value 1', (Get-KeePassProtectedString'ABC'))
$entry.Strings.Set('Custom Value 2', (Get-KeePassProtectedString'123'))
$conn.Save($null)
$conn.Close()
Shouldn't there be an additional variant of Update-KeePassEntry that only takes the databaseprofile etc and a given entry in memory that persist all properties of that entry to the database?
The text was updated successfully, but these errors were encountered:
With the old Cmdlets
Set-KP...
I was able to modify an entry including custom values via$kpentry.Strings
and persist them to the database. I cannot find a way to do that with the 'new'*-KeePass*
Cmdlets.Update-KeePassEntry
only takes the uuid from the passed entry object and updates the values specified in parameters but ignores everything else inside the passed entry object. :(Old way that worked:
Shouldn't there be an additional variant of
Update-KeePassEntry
that only takes the databaseprofile etc and a given entry in memory that persist all properties of that entry to the database?The text was updated successfully, but these errors were encountered: