Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. why prompt api-ms-win-core-errorhandling-l1-1-1 this errror ,when runing on win7 ,but win8 win10 run ok?
Forum Updated to NodeBB v4.3 + New Features

why prompt api-ms-win-core-errorhandling-l1-1-1 this errror ,when runing on win7 ,but win8 win10 run ok?

Scheduled Pinned Locked Moved Unsolved General and Desktop
5 Posts 3 Posters 420 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    jimfar
    wrote on last edited by
    #1

    i release the qt program using vs2019 and qt5.12.4 (qt5.13.2 also try ),and when only runing on win7 ,it will prompt miss api-ms-win-core-errorhandling-l1-1-1.dll .even i copy the dll to this computer ,it also prompt "it can not start(0xc000007b)"

    1 Reply Last reply
    0
    • hskoglundH Offline
      hskoglundH Offline
      hskoglund
      wrote on last edited by
      #2

      Hi, error (0xc000007b) means you copied the wrong version of api-ms-win-core-errorhandling-l1-1-1.dll, the 32-bit instead of the 64-bit (or the other way around)

      1 Reply Last reply
      3
      • JKSHJ Offline
        JKSHJ Offline
        JKSH
        Moderators
        wrote on last edited by
        #3

        @jimfar said in why prompt api-ms-win-core-errorhandling-l1-1-1 this errror ,when runing on win7 ,but win8 win10 run ok?:

        api-ms-win-core-errorhandling-l1-1-1.dll

        I don't think you should copy any DLLs that start with api-ms-win-*.

        Your app asks for that DLL because it is trying to use a feature that exists in Windows 8/10 but doesn't exist in Windows 7.

        If you want to support Windows 7, you can either:

        • Configure your compiler to support Windows 7, OR
        • Build your app using a Windows 7 PC

        See also https://stackoverflow.com/questions/47368490/missing-api-ms-win-core-errorhandling-l1-1-1-dll-on-visual-studio-2015-under-win

        Qt Doc Search for browsers: forum.qt.io/topic/35616/web-browser-extension-for-improved-doc-searches

        1 Reply Last reply
        4
        • J Offline
          J Offline
          jimfar
          wrote on last edited by
          #4

          @jimfar said in why prompt api-ms-win-core-errorhandling-l1-1-1 this errror ,when runing on win7 ,but win8 win10 run ok?:

          api-ms-win-core-errorhandling-l1-1-1.dll

          I am sure it is x64 check it on dependecy walker tool.

          1 Reply Last reply
          0
          • hskoglundH Offline
            hskoglundH Offline
            hskoglund
            wrote on last edited by
            #5

            Hi, I think @JKSH is correct, those dlls with names starting with api-ms-win-*. is not meant to be run on Windows 7, only on Windows 8 and 10.

            So either upgrade to Windows 10 or you can try building your Qt program with another compiler, e.g. reinstall Qt and select something without "UWP" starting in the name, for example "MSVC 2017 64-bit". (That one I know works also on Windows 7.)

            1 Reply Last reply
            0

            • Login

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • Users
            • Groups
            • Search
            • Get Qt Extensions
            • Unsolved