-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding WinDbgX into a container, various errors. #515
Comments
Hi @PipeItToDevNull, thanks for bringing up the Issue you're facing. Can you help us get more clarity on what you're trying to do? Do you want to install WinDbgX so you can debug an application inside the container? Or to debug the container itself? |
Hi, I am looking to containerize WinDbgX so that I can process dump files in a SaaS manner. My end goal would be to process BSOD dump files in this container. |
This issue still persists, I have not made headway on this. |
We're triaging this Issue. Thanks for your patience. |
We are investigating the MSIX package installation issue. A workaround is to expand the archives: # escape=`
FROM mcr.microsoft.com/windows/servercore:ltsc2022
SHELL ["powershell.exe", "-Command $ProgressPreference = 'SilentlyContinue';"]
# Download the MSIX package bundle.
RUN Invoke-WebRequest https://aka.ms/windbg/download -OutFile windbg.appinstaller; `
Invoke-WebRequest ([xml](Get-Content windbg.appinstaller)).AppInstaller.MainBundle.Uri -OutFile bundle.zip; `
Remove-Item windbg.appinstaller
# Expand the x64 package to the windbg directory.
RUN Expand-Archive bundle.zip; `
Remove-Item bundle.zip; `
Move-Item bundle\windbg_win7-x64.msix windbg.zip; `
Remove-Item bundle -Recurse; `
Expand-Archive windbg.zip; `
Remove-Item windbg.zip |
I attempted this method, and manually extracted the packages on my host to take a peak but it appears this installer does not include the required |
The executable is actually
|
I dug into this as well and discovered that |
Another thread about how to do this microsoftfeedback/WinDbg-Feedback#19 (comment) |
You can still find |
Thank you so much for your support and suggested alternatives, the standard debugger does indeed install fine. I hope to see the primary UWP applications working in containers in the future. |
Related to #418, I am trying to install WinDbgX into a container, seen here: https://github.com/PipeItToDevNull/WinDbg-Container
In initial runs I received failures that seem to be Firewall related: https://github.com/PipeItToDevNull/WinDbg-Container/actions/runs/9939147273/job/27453119531
After attempting to enable the firewall I receive failures that, to me, mean the firewall cannot be turned on: https://github.com/PipeItToDevNull/WinDbg-Container/actions/runs/9939451743/job/27454051971
Would adding
.appx
packages just never work in containers?The text was updated successfully, but these errors were encountered: