https://bugs.winehq.org/show_bug.cgi?id=29681
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- URL|http://www.microsoft.com/do |https://web.archive.org/web |wnload/en/details.aspx?id=8 |/20110805064614/http://down |279 |load.microsoft.com/download | |/A/6/A/A6AC035D-DA3F-4F0C-A | |DA4-37C8E5D34E3D/winsdk_web | |.exe
--- Comment #5 from Anastasius Focht focht@gmx.net --- Hello folks,
adding stable download link via Internet Archive.
https://web.archive.org/web/20110805064614/http://download.microsoft.com/dow...
https://www.virustotal.com/gui/file/9ea8d82a66a33946e8673df92d784971b35b8f65...
$ sha1sum winsdk_web.exe a8717ebb20a69c7efa85232bcb9899b8b07f98cf winsdk_web.exe
$ du -sh winsdk_web.exe 500K winsdk_web.exe
The web-installer is only a bootstrapper and snapshotting it alone via archive.org is not future-safe. Many (web)installers and payloads have vanished from MDC (Microsoft download center) in 2020.
Full offline installer / ISO (32-bit):
https://web.archive.org/web/20120107114630/http://www.microsoft.com/download...
->
https://web.archive.org/web/20140809051201/http://www.microsoft.com/en-us/do...
->
https://web.archive.org/web/20140728031703/http://download.microsoft.com/dow...
$ sha1sum GRMSDK_EN_DVD.iso cde254e83677c34c8fd509d6b733c32002fe3572 GRMSDK_EN_DVD.iso
$ du -sh GRMSDK_EN_DVD.iso 568M GRMSDK_EN_DVD.iso
Having the full offline installer makes it easier to further minimize the required package dependencies without running anything:
--- snip --- $ grep -Hrni tracefmt Binary file Setup/WinSDKWin32Tools/cab1.cab matches Binary file Setup/WinSDKWin32Tools/WinSDKWin32Tools_x86.msi matches --- snip ---
Using the installer info from https://bugs.winehq.org/show_bug.cgi?id=29721#c7 one can construct the URLs for the necessary payloads:
* https://web.archive.org/web/20211121111905/https://download.microsoft.com/do...
https://www.virustotal.com/gui/file/e2f436b126440f6da6a4f612f2296c1eba24ffc4...
$ sha1sum cab1.cab 70208a2d86ff899c27085e4c2b208aa86c364dbb cab1.cab
$ du -sh cab1.cab 7.9M cab1.cab
* https://web.archive.org/web/20211121112005/https://download.microsoft.com/do...
https://www.virustotal.com/gui/file/c32b16edb2d37f309115b7473d9bfe822af94c73...
$ sha1sum WinSDKWin32Tools_x86.msi 9d214c53242dfd13b8b009a70f6ed8efd10963c7 WinSDKWin32Tools_x86.msi
$ du -sh WinSDKWin32Tools_x86.msi 728K WinSDKWin32Tools_x86.msi
Minimal offline install with above packages downloaded prior:
--- snip --- $ wine msiexec -i WinSDKWin32Tools_x86.msi --- snip ---
Regards