support Posted September 28, 2018 Share Posted September 28, 2018 We have a customer that would like additional API functionality to be able to disable and enable the Password Checkout options on password records. If this is something you'd like to see, please cast your vote here:) Regards, Support. Link to comment Share on other sites More sharing options...
Burle Mickael Posted February 13, 2020 Share Posted February 13, 2020 +1 Very usefull functionnality for powershell script allow to do it for a creation or an update of the password entry with something like : RequiresCheckOut=1; ChangeOnCheckin=1; Link to comment Share on other sites More sharing options...
Mordecai Posted April 24, 2020 Share Posted April 24, 2020 +1 We need this, too. Link to comment Share on other sites More sharing options...
Burle Mickael Posted May 7, 2020 Share Posted May 7, 2020 +1 I script a workaround with powershell sql cmdlet to reach this goal but it not use password state api $query = "UPDATE dbo.passwords SET ChangeOnCheckin = '1', RequiresCheckOut = '1' where PasswordListID like '< Passwordlist ID >' AND passwordid like '<password id>'" Invoke-Sqlcmd -Query $query -ServerInstance "DBSERVER\INstance,PORT" -Database <DBname> -Username <username> -Password <XXXXXXXX> Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now