# vcpkg_execute_in_download_mode Execute a process even in download mode. ## Usage ```cmake vcpkg_execute_in_download_mode( COMMAND [...] OUTPUT_QUIET ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_STRIP_TRAILING_WHITESPACE WORKING_DIRECTORY TIMEOUT RESULT_VARIABLE OUTPUT_VARIABLE ERROR_VARIABLE INPUT_FILE OUTPUT_FILE ERROR_FILE ENCODING ) ``` The signature of this function is identical with `execute_process()` except that it only accepts one COMMAND argument, i.e., does not support chaining multiple commands with pipes. See `execute_process()` for a detailed description of the parameters. ## Source [scripts/cmake/vcpkg_execute_in_download_mode.cmake](https://github.com/Microsoft/vcpkg/blob/master/scripts/cmake/vcpkg_execute_in_download_mode.cmake)