0
Q:
A) Create an installer and set the Installer.Context property for each version of your application. | B) Create an installer that has a launch condition to verify the locale settings. |
C) Create an installer that has a custom action to install only location-specific files. | D) Create an installer that has an MsiConfigureProduct function to install the appropriate version. |
Answer: C) Create an installer that has a custom action to install only location-specific files.
Explanation:
Explanation:
Custom actions are a Windows Installer feature that allows you to run code at the end of an installation to perform actions that cannot be handled during installation. This is an appropriate solution for this scenario as we only want to deploy the resource files on the server.
Incorrect Answers:
A: We just want to deploy the resource files. We do not need to set the Context property in the application.
B: We don’t need any launch conditions. We just want to deploy the resource files.
D: We just want to deploy the resource files.