How to determine if the 32-bit Visual Studio 2013 redistributable is installed on a user's machine reliably via the Registry?

后端 未结 4 1741
情歌与酒
情歌与酒 2021-01-02 05:30

I am using DeployMaster to build an installer for a 32-bit Windows application written in C++ using Qt.

The executable depends on the Visual Studio 2013 redistributa

4条回答
  •  庸人自扰
    2021-01-02 05:51

    Just in case someone is looking at this, but is using NSIS to deploy their program.

    You check:

    ReadRegDword $0 HKLM "SOFTWARE\Wow6432Node\Microsoft\DevDiv\vc\Servicing\12.0\RuntimeMinimum" "Install"
    

    If $0 equals 1, then it is installed. If not, it isn't.

提交回复
热议问题