f.roncarati Posted June 18, 2020 Posted June 18, 2020 I need an msi version of the Passwordstate Credential Provider in order to install automatically on all the windows client through a domain group policy
f.roncarati Posted July 8, 2020 Author Posted July 8, 2020 solved with these steps: download PasswordstateCredentialProvider.exe from passwordstate admin section save on a network share readable from your users create a batch file (ex. rpcp_install.bat) on your domain controller @echo off REM Reset Portal Credential Provider installation set InstallRev=ResetPortalCredentialProvider_XXX if exist "%windir%\rpcp.txt" goto Finish \\network_share\PasswordstateCredentialProvider.exe /s Text="Reset Password/Unlock Account" Url="https://passwordreset.domain.com/?ShowExitButton=true" echo %InstallRev% > "%windir%\rpcp.txt" :Finish create a GPO under yourdoman - computers edit the GPO a go to "Computer Configuration" - "Policies" - "Windows Settings" - "Scripts (Startup/Shutdown) and double click "Startup" in the right panel click the Add... button, click the Browse... button, a folder will open, copy here the batch file rpcp_install.bat, select it and confirm (see gpo_example.png) now when a users login the installer will silently start
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