Application crash due to ucrtbase.dll












0















We are currently making upgrades to our application. Win7->Win10, VS2012->VS2017. The solutions have a fairly high complexity but everything has gone well except one single project(process).



The process dies and in the event log I can find this:



Faulting application name: MyProcess.exe, version: 1.0.0.0, time stamp: 0x5c418d86
Faulting module name: ucrtbase.dll, version: 10.0.10240.16384, time stamp: 0x559f3aa5
Exception code: 0xc0000409
Fault offset: 0x0007d84b
Faulting process id: 0xcdc
Faulting application start time: 0x01d4b19831ce98cd
Faulting application path: C:PathToMyProcessMyProcess.exe
Faulting module path: C:WindowsSYSTEM32ucrtbase.dll
Report Id: 3071cc19-1a57-4828-9721-275a2d3cf164
Faulting package full name:
Faulting package-relative application ID:


I've concluded that it works on a computer with visual studio 2017 installed but not on one without. I installed with .NET desktop development, Desktop development with C++. Had to include individual components: Visual c++ MFC for x86 and x64 and Windows 10 SDK 10.0.17134. Look picture.



installed stuff



I've installed redistributable versions of various versions and whatever I could get a hold of and it still doesn't work. What am I missing? What is not included by default in Windows and Microsoft Visual C++ Redistributable for Visual Studio 2017?










share|improve this question





























    0















    We are currently making upgrades to our application. Win7->Win10, VS2012->VS2017. The solutions have a fairly high complexity but everything has gone well except one single project(process).



    The process dies and in the event log I can find this:



    Faulting application name: MyProcess.exe, version: 1.0.0.0, time stamp: 0x5c418d86
    Faulting module name: ucrtbase.dll, version: 10.0.10240.16384, time stamp: 0x559f3aa5
    Exception code: 0xc0000409
    Fault offset: 0x0007d84b
    Faulting process id: 0xcdc
    Faulting application start time: 0x01d4b19831ce98cd
    Faulting application path: C:PathToMyProcessMyProcess.exe
    Faulting module path: C:WindowsSYSTEM32ucrtbase.dll
    Report Id: 3071cc19-1a57-4828-9721-275a2d3cf164
    Faulting package full name:
    Faulting package-relative application ID:


    I've concluded that it works on a computer with visual studio 2017 installed but not on one without. I installed with .NET desktop development, Desktop development with C++. Had to include individual components: Visual c++ MFC for x86 and x64 and Windows 10 SDK 10.0.17134. Look picture.



    installed stuff



    I've installed redistributable versions of various versions and whatever I could get a hold of and it still doesn't work. What am I missing? What is not included by default in Windows and Microsoft Visual C++ Redistributable for Visual Studio 2017?










    share|improve this question



























      0












      0








      0








      We are currently making upgrades to our application. Win7->Win10, VS2012->VS2017. The solutions have a fairly high complexity but everything has gone well except one single project(process).



      The process dies and in the event log I can find this:



      Faulting application name: MyProcess.exe, version: 1.0.0.0, time stamp: 0x5c418d86
      Faulting module name: ucrtbase.dll, version: 10.0.10240.16384, time stamp: 0x559f3aa5
      Exception code: 0xc0000409
      Fault offset: 0x0007d84b
      Faulting process id: 0xcdc
      Faulting application start time: 0x01d4b19831ce98cd
      Faulting application path: C:PathToMyProcessMyProcess.exe
      Faulting module path: C:WindowsSYSTEM32ucrtbase.dll
      Report Id: 3071cc19-1a57-4828-9721-275a2d3cf164
      Faulting package full name:
      Faulting package-relative application ID:


      I've concluded that it works on a computer with visual studio 2017 installed but not on one without. I installed with .NET desktop development, Desktop development with C++. Had to include individual components: Visual c++ MFC for x86 and x64 and Windows 10 SDK 10.0.17134. Look picture.



      installed stuff



      I've installed redistributable versions of various versions and whatever I could get a hold of and it still doesn't work. What am I missing? What is not included by default in Windows and Microsoft Visual C++ Redistributable for Visual Studio 2017?










      share|improve this question
















      We are currently making upgrades to our application. Win7->Win10, VS2012->VS2017. The solutions have a fairly high complexity but everything has gone well except one single project(process).



      The process dies and in the event log I can find this:



      Faulting application name: MyProcess.exe, version: 1.0.0.0, time stamp: 0x5c418d86
      Faulting module name: ucrtbase.dll, version: 10.0.10240.16384, time stamp: 0x559f3aa5
      Exception code: 0xc0000409
      Fault offset: 0x0007d84b
      Faulting process id: 0xcdc
      Faulting application start time: 0x01d4b19831ce98cd
      Faulting application path: C:PathToMyProcessMyProcess.exe
      Faulting module path: C:WindowsSYSTEM32ucrtbase.dll
      Report Id: 3071cc19-1a57-4828-9721-275a2d3cf164
      Faulting package full name:
      Faulting package-relative application ID:


      I've concluded that it works on a computer with visual studio 2017 installed but not on one without. I installed with .NET desktop development, Desktop development with C++. Had to include individual components: Visual c++ MFC for x86 and x64 and Windows 10 SDK 10.0.17134. Look picture.



      installed stuff



      I've installed redistributable versions of various versions and whatever I could get a hold of and it still doesn't work. What am I missing? What is not included by default in Windows and Microsoft Visual C++ Redistributable for Visual Studio 2017?







      windows-10 visual-studio-2017 redistributable






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Feb 20 at 10:38









      Biswapriyo

      3,27641344




      3,27641344










      asked Jan 22 at 12:51









      AlexanderAlexander

      33




      33






















          2 Answers
          2






          active

          oldest

          votes


















          0















          I've installed redistributable versions of various versions and whatever I could get a hold of and it still doesn't work.




          ucrtbase.dll has nothing to do with any version of the Visual C++ Redistributable. The file that is faulting is from the Windows 10 SDK (26624).




          I've concluded that it works on a computer with visual studio 2017 installed but not on one without




          Visual Studio 2017 depending on the components you selected to install would have installed the correct version of the Windows SDK.




          What is not included by default in Windows and Microsoft Visual C++ Redistributable for Visual Studio 2017?




          Visual Studio 2017 will install the Windows SDK if you select components that require it. If you don't select to install any components that require the Windows SDK, the Windows SDK, will not be installed by Visual Studio 2017.




          What am I missing?




          I would start, if you are the author of the program, by updating your solution to point to the correct version of ucrtbase.dll, and then install the Universal C Runtime on the system. If you are not the author, then I would install the Windows 10 SDK (26624), in order to resolve the faulting module.



          When you do install the correct version of the SDK, be sure you install the Universal C Runtime, since that is actually what installs ucrtbase.dll






          share|improve this answer































            0














            I encountered this issue on two occasions where I was able to solve one of them and got the "problem area" of the other. This ucrtbase.dll error thing is just a general error. So what went wrong for me?



            First case; Application -> cpp.dll -> cpp interface with static linking to -> C#.dll -> Encountered error. The error was detected and caught and thrown upwards in C# and even then hit to the C-interop to C++. This doesn't work and everything just exploded.



            Second case: Unsolved at the moment but crashed inexplicably at trying to use a _COM_SMARTPTR_TYPEDEF which worked previously in Win7 but not in Win10.



            Edit: Second case resolved; was deep inside com constructors which failed due to a bad proxy/stub of com interface when communicating with other processes. Basically bad communication.






            share|improve this answer

























              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "3"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1397010%2fapplication-crash-due-to-ucrtbase-dll%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0















              I've installed redistributable versions of various versions and whatever I could get a hold of and it still doesn't work.




              ucrtbase.dll has nothing to do with any version of the Visual C++ Redistributable. The file that is faulting is from the Windows 10 SDK (26624).




              I've concluded that it works on a computer with visual studio 2017 installed but not on one without




              Visual Studio 2017 depending on the components you selected to install would have installed the correct version of the Windows SDK.




              What is not included by default in Windows and Microsoft Visual C++ Redistributable for Visual Studio 2017?




              Visual Studio 2017 will install the Windows SDK if you select components that require it. If you don't select to install any components that require the Windows SDK, the Windows SDK, will not be installed by Visual Studio 2017.




              What am I missing?




              I would start, if you are the author of the program, by updating your solution to point to the correct version of ucrtbase.dll, and then install the Universal C Runtime on the system. If you are not the author, then I would install the Windows 10 SDK (26624), in order to resolve the faulting module.



              When you do install the correct version of the SDK, be sure you install the Universal C Runtime, since that is actually what installs ucrtbase.dll






              share|improve this answer




























                0















                I've installed redistributable versions of various versions and whatever I could get a hold of and it still doesn't work.




                ucrtbase.dll has nothing to do with any version of the Visual C++ Redistributable. The file that is faulting is from the Windows 10 SDK (26624).




                I've concluded that it works on a computer with visual studio 2017 installed but not on one without




                Visual Studio 2017 depending on the components you selected to install would have installed the correct version of the Windows SDK.




                What is not included by default in Windows and Microsoft Visual C++ Redistributable for Visual Studio 2017?




                Visual Studio 2017 will install the Windows SDK if you select components that require it. If you don't select to install any components that require the Windows SDK, the Windows SDK, will not be installed by Visual Studio 2017.




                What am I missing?




                I would start, if you are the author of the program, by updating your solution to point to the correct version of ucrtbase.dll, and then install the Universal C Runtime on the system. If you are not the author, then I would install the Windows 10 SDK (26624), in order to resolve the faulting module.



                When you do install the correct version of the SDK, be sure you install the Universal C Runtime, since that is actually what installs ucrtbase.dll






                share|improve this answer


























                  0












                  0








                  0








                  I've installed redistributable versions of various versions and whatever I could get a hold of and it still doesn't work.




                  ucrtbase.dll has nothing to do with any version of the Visual C++ Redistributable. The file that is faulting is from the Windows 10 SDK (26624).




                  I've concluded that it works on a computer with visual studio 2017 installed but not on one without




                  Visual Studio 2017 depending on the components you selected to install would have installed the correct version of the Windows SDK.




                  What is not included by default in Windows and Microsoft Visual C++ Redistributable for Visual Studio 2017?




                  Visual Studio 2017 will install the Windows SDK if you select components that require it. If you don't select to install any components that require the Windows SDK, the Windows SDK, will not be installed by Visual Studio 2017.




                  What am I missing?




                  I would start, if you are the author of the program, by updating your solution to point to the correct version of ucrtbase.dll, and then install the Universal C Runtime on the system. If you are not the author, then I would install the Windows 10 SDK (26624), in order to resolve the faulting module.



                  When you do install the correct version of the SDK, be sure you install the Universal C Runtime, since that is actually what installs ucrtbase.dll






                  share|improve this answer














                  I've installed redistributable versions of various versions and whatever I could get a hold of and it still doesn't work.




                  ucrtbase.dll has nothing to do with any version of the Visual C++ Redistributable. The file that is faulting is from the Windows 10 SDK (26624).




                  I've concluded that it works on a computer with visual studio 2017 installed but not on one without




                  Visual Studio 2017 depending on the components you selected to install would have installed the correct version of the Windows SDK.




                  What is not included by default in Windows and Microsoft Visual C++ Redistributable for Visual Studio 2017?




                  Visual Studio 2017 will install the Windows SDK if you select components that require it. If you don't select to install any components that require the Windows SDK, the Windows SDK, will not be installed by Visual Studio 2017.




                  What am I missing?




                  I would start, if you are the author of the program, by updating your solution to point to the correct version of ucrtbase.dll, and then install the Universal C Runtime on the system. If you are not the author, then I would install the Windows 10 SDK (26624), in order to resolve the faulting module.



                  When you do install the correct version of the SDK, be sure you install the Universal C Runtime, since that is actually what installs ucrtbase.dll







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Feb 26 at 14:51









                  RamhoundRamhound

                  20.9k156287




                  20.9k156287

























                      0














                      I encountered this issue on two occasions where I was able to solve one of them and got the "problem area" of the other. This ucrtbase.dll error thing is just a general error. So what went wrong for me?



                      First case; Application -> cpp.dll -> cpp interface with static linking to -> C#.dll -> Encountered error. The error was detected and caught and thrown upwards in C# and even then hit to the C-interop to C++. This doesn't work and everything just exploded.



                      Second case: Unsolved at the moment but crashed inexplicably at trying to use a _COM_SMARTPTR_TYPEDEF which worked previously in Win7 but not in Win10.



                      Edit: Second case resolved; was deep inside com constructors which failed due to a bad proxy/stub of com interface when communicating with other processes. Basically bad communication.






                      share|improve this answer






























                        0














                        I encountered this issue on two occasions where I was able to solve one of them and got the "problem area" of the other. This ucrtbase.dll error thing is just a general error. So what went wrong for me?



                        First case; Application -> cpp.dll -> cpp interface with static linking to -> C#.dll -> Encountered error. The error was detected and caught and thrown upwards in C# and even then hit to the C-interop to C++. This doesn't work and everything just exploded.



                        Second case: Unsolved at the moment but crashed inexplicably at trying to use a _COM_SMARTPTR_TYPEDEF which worked previously in Win7 but not in Win10.



                        Edit: Second case resolved; was deep inside com constructors which failed due to a bad proxy/stub of com interface when communicating with other processes. Basically bad communication.






                        share|improve this answer




























                          0












                          0








                          0







                          I encountered this issue on two occasions where I was able to solve one of them and got the "problem area" of the other. This ucrtbase.dll error thing is just a general error. So what went wrong for me?



                          First case; Application -> cpp.dll -> cpp interface with static linking to -> C#.dll -> Encountered error. The error was detected and caught and thrown upwards in C# and even then hit to the C-interop to C++. This doesn't work and everything just exploded.



                          Second case: Unsolved at the moment but crashed inexplicably at trying to use a _COM_SMARTPTR_TYPEDEF which worked previously in Win7 but not in Win10.



                          Edit: Second case resolved; was deep inside com constructors which failed due to a bad proxy/stub of com interface when communicating with other processes. Basically bad communication.






                          share|improve this answer















                          I encountered this issue on two occasions where I was able to solve one of them and got the "problem area" of the other. This ucrtbase.dll error thing is just a general error. So what went wrong for me?



                          First case; Application -> cpp.dll -> cpp interface with static linking to -> C#.dll -> Encountered error. The error was detected and caught and thrown upwards in C# and even then hit to the C-interop to C++. This doesn't work and everything just exploded.



                          Second case: Unsolved at the moment but crashed inexplicably at trying to use a _COM_SMARTPTR_TYPEDEF which worked previously in Win7 but not in Win10.



                          Edit: Second case resolved; was deep inside com constructors which failed due to a bad proxy/stub of com interface when communicating with other processes. Basically bad communication.







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Feb 26 at 17:03









                          Ramhound

                          20.9k156287




                          20.9k156287










                          answered Feb 20 at 10:09









                          AlexanderAlexander

                          33




                          33






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Super User!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1397010%2fapplication-crash-due-to-ucrtbase-dll%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              If I really need a card on my start hand, how many mulligans make sense? [duplicate]

                              Alcedinidae

                              Can an atomic nucleus contain both particles and antiparticles? [duplicate]