A family of Microsoft relational database management systems designed for ease of use.
just in case somebody is using on-prem (for Access 2016)...
I created the following shutdown script which successfully uninstalled the KB on all my machines in the domain (shutdown script applied by Group Policy). Maybe it's for some help for some other users. If you use Access 2019, you may have to check and edit the reg values
***
:: check architecture
if %PROCESSOR_ARCHITECTURE%==x86 (
set reg\_root=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
) else (
set reg\_root=HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall
)
REM uninstall KB500209 because of laccdb issues
rem check if kb is installed
reg query "%reg_root%{90160000-0011-0000-0000-0000000FF1CE}_Office16.PROPLUS_{BA36399C-CF0F-4368-8327-7D35302BF0BB}" /v UninstallString
if ERRORLEVEL 1 goto EndKB500209
call start /wait msiexec.exe /package {90160000-0011-0000-0000-0000000FF1CE} /uninstall "{BA36399C-CF0F-4368-8327-7D35302BF0BB}" /qb