-
Download SQLite tools for windows. On a page https://www.sqlite.org/download.html it is tools: https://www.sqlite.org/2024/sqlite-tools-win-x64-… Unzip content to c:\temp\
-
Start cmd.exe as administrator, change directory to c:\temp
-
Stop IIS by command
IISRESET /STOP -
Open C:\Program Files\VeridiumID\RAEPServer\RaWebApp\Web.config and find line with CacheFile. Default is:
-
<add key="CacheFile" value="c:\windows\temp\RA.sqlite" />
-
Type
sqlite3 c:\windows\temp\RA.sqlite -
Type check entries for user you like to delete cached certificate:
select * from certcache where upn = 'user principal name'; -
if records matching your exectations, you can delete rows based on upn:
-
delete from certcache where upn = 'user principal name';
-
start IIS again by command:
-
IISRESET /START