I found out, that there are 2 different help pages for lpc_driver_installer.exe, one with
lpc_driver_installer.exe /h
which seem to give a list of msiexec Parameters, and another one with
lpc_driver_installer.exe /?
which gives a list of setup parameters, like /extract for example.
I managed to extract the setup in a local directory and found out that it contains:
- lpc_driver_installer.msi
- lpc_driver_installer.x64.msi
- and directories lpc313x_dfu_msc, lpcdevice, lpc-linkII-hid and lpc-linkII-vcom containing the .inf files
Installation:
msiexec /i lpc_driver_installer.x64.msi
did not work, I get an error "This package can only be run from a bootstrapper". So I still have to use lpc_driver_installer.exe, but once the programm is installed I can deinstall it with the .msi file.
Deinstallation:
msiexec /x lpc_driver_installer.x64.msi
or in quiet mode
msiexec /q /x lpc_driver_installer.x64.msi
So this is an acceptable solution, though I am a bit upset, that I have to use a combination of setup AND msi to install/deinstall the drivers but the result looks clean.