https://bugs.winehq.org/show_bug.cgi?id=36470
Anastasius Focht focht@gmx.net changed:
What |Removed |Added ---------------------------------------------------------------------------- URL|http://www.microsoft.com/en |https://web.archive.org/web |-us/download/details.aspx?i |/20110805064614/http://down |d=8279 |load.microsoft.com/download | |/A/6/A/A6AC035D-DA3F-4F0C-A | |DA4-37C8E5D34E3D/winsdk_web | |.exe
--- Comment #3 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 Inspect.exe Binary file Setup/WinSDKTools/cab1.cab matches Binary file Setup/WinSDKTools/WinSDKTools_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/20211121142621/https://download.microsoft.com/do...
https://www.virustotal.com/gui/file/8f0db5728846643054b3e79a889216636de0aeda...
$ sha1sum cab1.cab ba359a216d9728c52217b253fb6f8b5cc3be0274 cab1.cab
$ du -sh cab1.cab 11M cab1.cab
* https://web.archive.org/web/20211121142815/https://download.microsoft.com/do...
https://www.virustotal.com/gui/file/2ba3091ef43e0b29cdfbc46695a6c6bd1b842d93...
$ sha1sum WinSDKTools_x86.msi 5934a590abdbe5010b56f531575ba0b1e9598c6d WinSDKTools_x86.msi
$ du -sh WinSDKTools_x86.msi 756K WinSDKTools_x86.msi
Minimal offline install with above packages downloaded prior:
--- snip --- $ wine msiexec -i WinSDKTools_x86.msi --- snip ---
Regards