C++ Redistributables
Configuring C++ Redistributables prerequisite.
Parameters
Property | Type | Description |
---|---|---|
ModuleName | string | The value needs to be 'CppRedistributables', regardless of architecture, for the cli to know how to install it. |
CppRedistVersion | string | The version of the C++ Redistributables to install. This is checked againsts the server's installed version. If you are targeting a specific version, you can be more specific in this field. For example, 14.4 is more specific than 14. |
Architecture | string | Help the cli determine where to look in the registry when checking for the installed version of the C++ Redistributables. Acceptable values are x86 and x64 . |
CppRedistUrl | string | Optional, The URL to download the version of C++ Redistributables you want to install. You can opt to specify a local or network path instead with PackagePath . |
PackagePath | string | Optional, The path to the C++ Redistributables installer. You can opt to specify a url instead with CppRedistUrl . |
Arguments | string | The arguments to pass to the C++ Redistributables installer. See Microsoft's documentation for more information. |
- ModuleName: CppRedistributables
CppRedistVersion: 14.4
Architecture: x86
CppRedistUrl: https://aka.ms/vs/17/release/vc_redist.x86.exe
PackagePath:
Arguments: /quiet /norestart
- ModuleName: CppRedistributables
CppRedistVersion: 14.4
Architecture: x64
CppRedistUrl: https://aka.ms/vs/17/release/vc_redist.x64.exe
PackagePath:
Arguments: /quiet /norestart