My program is working on Windows 10 but not on Windows 11

Victor Rodríguez Noguera 0 Reputation points
2024-12-20T09:33:10.5333333+00:00

I have a wpf application that is working on Windows 10 but when i try executing or debbugging it on Windows 11 it crashes, its driving me Crazy... The error code I find is this: Excepción no controlada en 0x00007FFE232D3B3F (combase.dll) en Mupi.Desktop.exe: 0xC0000602:  Se produjo una excepción con error inmediato. No se invocarán los controladores de excepciones y el proceso se terminará inmediatamente.

Windows 10
Windows 10
A Microsoft operating system that runs on personal computers and tablets.
11,908 questions
Windows 11
Windows 11
A Microsoft operating system designed for productivity, creativity, and ease of use.
10,277 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Daisy Zhou 26,871 Reputation points Microsoft Vendor
    2024-12-23T08:18:47.42+00:00

    Hello

    Thank you for posting in Q&A forum.

    The error you're encountering with combase.dll on Windows 11 can be due to several reasons. Here are some steps you can try:

    1. Run System File Checker (SFC) and DISM:

    • Open Command Prompt as an administrator.

    • Run the following commands one by one:

    sfc /scannow

    dism.exe /online /cleanup-image /scanhealth

    dism.exe /online /cleanup-image /restorehealth

    • Restart your computer and check if the issue persists.

    1. Re-register the combase.dll file:

    • Open Command Prompt as an administrator.

    • Run the following command:

    regsvr32 combase.dll

    • Restart your computer.

    1. Update Windows and Drivers:

    • Ensure your Windows 11 is up to date with the latest patches and updates.

    • Update your graphics drivers and any other relevant drivers.

    1. Check for Compatibility Issues:

    • Sometimes, certain applications or libraries might not be fully compatible with Windows 11. Check if there are any updates or patches available for your WPF application or any third-party libraries it uses.

    1. Debugging Tools:

    • Use debugging tools like WinDbg to get more detailed information about the crash. This can help identify the root cause of the issue.

    I hope the information above is helpful.

    If you have any questions or concerns, please feel free to let us know.

    Best Regards,

    Daisy Zhou

    ============================================

    If the Answer is helpful, please click "Accept Answer" and upvote it.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.