diff --git a/appveyor.yml b/appveyor.yml index a182135a..3e0779c6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -97,7 +97,7 @@ deploy: tag: $(APPVEYOR_REPO_TAG_NAME) release: LOOT v$(APPVEYOR_REPO_TAG_NAME) description: | - Requires Windows 7 or later and the [MSVC 2015 x86 redistributable](http://download.microsoft.com/download/9/a/2/9a2a7e36-a8af-46c0-8a78-a5eb111eefe2/vc_redist.x86.exe), and [7-Zip](http://www.7-zip.org/) to extract the archives. + Requires Windows 7 or later and the [MSVC 2015 x86 redistributable](https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe), and [7-Zip](http://www.7-zip.org/) to extract the archives. ## Change Logs - [Application](https://loot.readthedocs.io/en/$(APPVEYOR_REPO_TAG_NAME)/app/changelog.html) diff --git a/docs/app/installation.rst b/docs/app/installation.rst index 33156cfc..0b08d1d6 100644 --- a/docs/app/installation.rst +++ b/docs/app/installation.rst @@ -11,4 +11,4 @@ If LOOT was installed using the installer, then use the uninstaller linked to in 1. Delete the files you extracted from the location you chose. 2. Delete the ``LOOT`` folder in your local application data folder, which can be accessed by entering ``%LOCALAPPDATA%`` into Windows' File Explorer. -.. _MSVC 2015 x86 redistributable: http://download.microsoft.com/download/9/a/2/9a2a7e36-a8af-46c0-8a78-a5eb111eefe2/vc_redist.x86.exe +.. _MSVC 2015 x86 redistributable: https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe diff --git a/scripts/installer.iss b/scripts/installer.iss index e0337811..7621a9e2 100644 --- a/scripts/installer.iss +++ b/scripts/installer.iss @@ -295,7 +295,7 @@ end; procedure InitializeWizard(); begin if VCRedistNeedsInstall then begin - idpAddFile('http://download.microsoft.com/download/9/a/2/9a2a7e36-a8af-46c0-8a78-a5eb111eefe2/vc_redist.x86.exe', ExpandConstant('{tmp}\vc_redist.x86.exe')); + idpAddFile('https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe', ExpandConstant('{tmp}\vc_redist.x86.exe')); idpDownloadAfter(wpReady); end