The Measurement Studio .msm files are located in Program Files\Common Files\Merge Modules only on the system you are using for development. The .msm files contain information on how to add Measurement Studio libraries to another system, but copying them to the Merge Modules folder on another system is not sufficient. To redistribute your developed application to another system, you need to include your application and those merge modules in a Windows Installer package. The easiest way to do this is:
(1) Create a Setup Project in Visual Studio in the same solution as your application.
(2) In the solution explorer, right-click on the new setup project and choose Add->Project Output, then select your application project and choose "Primary output". This sh
ould add your application and then detect the necessary .msm files and add them to the setup project as well. You can verify this in the Detected Dependencies folder in the Solution Explorer.
(3) Build the setup project. The .exe, .ini, and .msi files created in the build directory of the setup project are your complete installer with the .msm files included.
Tony H
Measurement Studio