Windows Distribution - dll's to remove from libs folder

I am using inno to make an installer for a windows app and will be using the Visual C++ Windows Runtime Redistributable Installer instead of including the dll’s in my libs folder.

Currently I have the following dlls

msvcp140.dll (pretty sure i can remove this one) SQLiteDatabase.dll (keep) vccorlib140.dll (not sure) vcruntime140.dll (not sure) XojoGUIFramework32.dll (keep)

Any guidance?

If you use the redist installer, you can get rid of msvcp140.dll, vccorlib140.dll, and vcruntime140.dll.

Thanks Joe, I will give this a go, and mark as answered if there are no issues