Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Installation and Deployment
  4. Qt Creator startup problem in Windows 10
Forum Update on Tuesday, May 27th 2025

Qt Creator startup problem in Windows 10

Scheduled Pinned Locked Moved Unsolved Installation and Deployment
14 Posts 4 Posters 7.4k Views 2 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.
  • T Offline
    T Offline
    tapQt
    wrote on 29 Jul 2016, 12:26 last edited by
    #1

    I'm having problem running Qt creator in windows 10. I've tried using "-noload Welcome" and turning off windows firewall. I don't have any anti virus installed. All other Qt programs(Qt Designer/Qt Linguist etc) are running fine. How do I get to running logs for Qt creator? If I can get to log I might be able to see if there is any issue. Please suggest.

    1 Reply Last reply
    0
    • S Offline
      S Offline
      SGaist
      Lifetime Qt Champion
      wrote on 29 Jul 2016, 22:38 last edited by
      #2

      Hi and welcome to devnet,

      What problems are you getting ?

      You can see all the start options from Qt Creator when you add --help to the parameters.

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0
      • T Offline
        T Offline
        tapQt
        wrote on 29 Jul 2016, 22:52 last edited by
        #3

        No Screen is showing up. I don't see any instance in Task Manager. I was wondering if I can get to the logs what is terminating Qt

        1 Reply Last reply
        0
        • H Offline
          H Offline
          hskoglund
          wrote on 30 Jul 2016, 02:01 last edited by
          #4

          Hi, you could try launching Qt Creator from Dependency Walker (first open qtcreator.exe from Dependency Walker and then press F7 to profile it). That will hopefully give you a trace of what DLLs are ioaded and where it crashes.

          1 Reply Last reply
          0
          • T Offline
            T Offline
            tapQt
            wrote on 31 Jul 2016, 23:04 last edited by tapQt
            #5

            Thanks for your suggestion. I did get some dll load(windows dll load) error but I get that error for some other application as well which runs fine. I have never used dependency walker so not sure if I did the setup correctly.

            1 Reply Last reply
            0
            • H Offline
              H Offline
              hskoglund
              wrote on 1 Aug 2016, 03:55 last edited by
              #6

              Ok, Qt Creator needs the MSVC 2013 dlls, sometimes they're missing in WIndows 10, try to install them

              1 Reply Last reply
              0
              • T Offline
                T Offline
                tapQt
                wrote on 2 Aug 2016, 01:20 last edited by
                #7

                I have tried that but still not starting up.

                1 Reply Last reply
                0
                • H Offline
                  H Offline
                  hskoglund
                  wrote on 2 Aug 2016, 18:24 last edited by hskoglund 8 Feb 2016, 18:24
                  #8

                  Hmm, maybe some plugin is causing trouble, try starting Qt Creator with just the bare bones Core plugin:
                  qtcreator -noload all -load Core

                  1 Reply Last reply
                  0
                  • T Offline
                    T Offline
                    tapQt
                    wrote on 3 Aug 2016, 02:02 last edited by
                    #9

                    Yep. It worked. I guess I now can load one by one and see which one is failing. Thank you very much.

                    1 Reply Last reply
                    0
                    • T Offline
                      T Offline
                      tapQt
                      wrote on 4 Aug 2016, 03:29 last edited by
                      #10

                      I guess the problematic dlls are:
                      Welcome.dll
                      QmlProfilerExtension.dll
                      QmlProfiler.dll
                      QmlDesigner.dll

                      Since below command works/ brings up Qt creator
                      qtcreator -noload Welcome -noload QmlProfilerExtension -noload QmlProfiler -noload QmlDesigner

                      There is a general message though:
                      Running Windows Runtime device detection.
                      No winrtrunner.exe found.

                      I am running below version:
                      Qt Creator 4.0.3
                      Based on Qt 5.7.0 (MSVC 2013, 32 bit)
                      Built on Jul 5 2016 01:09:09
                      From revision ce4ddcb060

                      1 Reply Last reply
                      0
                      • H Offline
                        H Offline
                        hskoglund
                        wrote on 4 Aug 2016, 03:41 last edited by
                        #11

                        Hi, judging from that list of "no-show" plugins I'm guessing the culprit is OpenGL-related.
                        Try updating your video driver...

                        1 Reply Last reply
                        1
                        • T Offline
                          T Offline
                          tapQt
                          wrote on 5 Aug 2016, 12:19 last edited by
                          #12

                          You are absolutely right. I disabled my graphics driver and Qt creator starts with no error. I am not able to update my graphics driver yet, but I'm sure I'll find a way. At least I know the root cause. Thanks for helping me out.

                          1 Reply Last reply
                          0
                          • H Offline
                            H Offline
                            Hossein_IENT
                            wrote on 28 Feb 2017, 16:42 last edited by
                            #13

                            Hey @hskoglund

                            I have also the same problem as @tapQt . I would like to compile meshlab_mini.pro code which is produce a simple/limited version of Meshlab (https://github.com/cnr-isti-vclab/meshlab). I'm using QTCreator 4.2.1, QT 5.7 (just checked QT 5.7 in installation procedure because the could should be compiled with Qp 5.7), MSVC 2015, 32 bit.
                            When I try to open "meshlab-mini.pro" I get the following error:

                            Running Windows Runtime device detection.
                            No winrtrunner.exe found.
                            Project ERROR: Unknown module(s) in QT: script
                            Project ERROR: Unknown module(s) in QT: script
                            Project ERROR: Unknown module(s) in QT: script
                            Project ERROR: Unknown module(s) in QT: script

                            I have updated my graphic card driver and even have disabled them (as @tapQt mentioned) but the problem is still remaining. Do you have any idea how to solve that problem?

                            Thanks :)

                            1 Reply Last reply
                            0
                            • S Offline
                              S Offline
                              SGaist
                              Lifetime Qt Champion
                              wrote on 28 Feb 2017, 16:49 last edited by
                              #14

                              Hi and welcome to devnet,

                              It's not the same problem.

                              That project requires the QtScript module which has been removed since 5.6. You first have to build and install it in order to build that application with Qt >= 5.6

                              Interested in AI ? www.idiap.ch
                              Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                              1 Reply Last reply
                              1

                              • Login

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