Fix x86 folder contents in ARM64 Windows Server Hosting Bundle installer#47124
Closed
lextm wants to merge 1 commit intodotnet:mainfrom
Closed
Fix x86 folder contents in ARM64 Windows Server Hosting Bundle installer#47124lextm wants to merge 1 commit intodotnet:mainfrom
lextm wants to merge 1 commit intodotnet:mainfrom
Conversation
|
Thanks for your PR, @lextm. Someone from the team will get assigned to your PR shortly and we'll get it reviewed. |
1 task
|
Looks like this PR hasn't been active for some time and the codebase could have been changed in the meantime. |
Contributor
Author
|
All required changes are now committed to #47290. Close this one as it is no longer needed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix x86 folder contents in Windows 11 ARM64 Server Hosting Bundle installer
Consume x86 binaries in ARM64 Windows Server Hosting Bundle installer to fix x86 application pool crash. Resolve one of the two problems reported in #47115.
Description
Before this change, the ARM64 installer picks up the pure ARM64 binaries and installs into
Program Files (x86), so that x86 application pool cannot load them and simply crashes. After this change, the installer switches to install x86 binaries intoProgram Files (x86)folder, so that x86 application pools won't crash.Fixes part of #47115 (but x64 application pool crash is not resolved by this pull request).