- name: "Install Visual C++ 2010" run: | choco install windows-sdk-7.1 -f -y choco install KB2519277 -f -y However the situation was changed by two parts: After https://github.com/actions/runner-images/pull/6247 , GitHub windows-2022 runners now have Visual C++ 2010 redistributable due to https://community.chocolatey.org/packages/imagemagick.app#dependencies . It needs to be uninstalled first. Aft
