Quote
That's an excellent question and the other people who'd had this issue didn't say anything about which version they chose.
Since the OP stated MSVCR110.dll error was the issue, the 110 there means the part of the application that tossed the error was created with Visual Studio 2012 (Version 11.0) and requires C++ runtime 2012. SR4 for instance requires much more than just the 2012 C++ redistributable so based on which dll name is throw up, tells what package is needed. CL hinted a few here but was not too clear with their statement "Select the website based on the version mentioned in the error dialog" :
https://www.cyberlink.com/support/faq-content.do?id=24269
Basically this is the C++ versioning the CL note refers to:
MSVCR90.dll or MSVCP90.dll missing > C++ 2008 Redistributable
MSVCR100.dll or MSVCP100.dll missing > C++ 2010 Redistributable
MSVCR110.dll or MSVCP110.dll missing > C++ 2012 Redistributable
MSVCR120.dll or MSVCP120.dll missing > C++ 2013 Redistributable
MSVCR140.dll or MSVCP140.dll missing > C++ 2015 Redistributable
MSVCR150.dll or MSVCP150.dll missing > C++ 2017 Redistributable
MSVCR160.dll or MSVCP160.dll missing > C++ 2019 Redistributable
Jeff