qt creator 5.10 failed to retrieve msvc environment error










1















i just installed qt creator 5.10 and i opened a simple widget application this is the error that i get even without running the application



:-1: error: Failed to retrieve MSVC Environment from "D:pograml filesvisual studio2VCAuxiliaryBuildvcvarsall.bat":
'chcp' is not recognized as an internal or external command,
operable program or batch file.
'wmic' is not recognized as an internal or external command,
operable program or batch file.


i haven't found any solutions for this, if anyone could help me i would be very thankful










share|improve this question






















  • Read this post forum.qt.io/post/392085 It is actual, although is for Qt 5.9.

    – S.M.
    Feb 24 '18 at 7:08











  • "D:pograml files..." - Typo? I would check whether this vcvarsall.bat can be found at the noted location. Probably the error is - it cannot. vcvarsall.bat is a batch file which sets some env. variables to support using MSVC on command line. (Qt creator probably uses it for simple location of MS build tools.)

    – Scheff
    Feb 24 '18 at 7:16
















1















i just installed qt creator 5.10 and i opened a simple widget application this is the error that i get even without running the application



:-1: error: Failed to retrieve MSVC Environment from "D:pograml filesvisual studio2VCAuxiliaryBuildvcvarsall.bat":
'chcp' is not recognized as an internal or external command,
operable program or batch file.
'wmic' is not recognized as an internal or external command,
operable program or batch file.


i haven't found any solutions for this, if anyone could help me i would be very thankful










share|improve this question






















  • Read this post forum.qt.io/post/392085 It is actual, although is for Qt 5.9.

    – S.M.
    Feb 24 '18 at 7:08











  • "D:pograml files..." - Typo? I would check whether this vcvarsall.bat can be found at the noted location. Probably the error is - it cannot. vcvarsall.bat is a batch file which sets some env. variables to support using MSVC on command line. (Qt creator probably uses it for simple location of MS build tools.)

    – Scheff
    Feb 24 '18 at 7:16














1












1








1


0






i just installed qt creator 5.10 and i opened a simple widget application this is the error that i get even without running the application



:-1: error: Failed to retrieve MSVC Environment from "D:pograml filesvisual studio2VCAuxiliaryBuildvcvarsall.bat":
'chcp' is not recognized as an internal or external command,
operable program or batch file.
'wmic' is not recognized as an internal or external command,
operable program or batch file.


i haven't found any solutions for this, if anyone could help me i would be very thankful










share|improve this question














i just installed qt creator 5.10 and i opened a simple widget application this is the error that i get even without running the application



:-1: error: Failed to retrieve MSVC Environment from "D:pograml filesvisual studio2VCAuxiliaryBuildvcvarsall.bat":
'chcp' is not recognized as an internal or external command,
operable program or batch file.
'wmic' is not recognized as an internal or external command,
operable program or batch file.


i haven't found any solutions for this, if anyone could help me i would be very thankful







c++ visual-studio qt visual-c++ qt-creator






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Feb 24 '18 at 6:33









rednefedrednefed

368




368












  • Read this post forum.qt.io/post/392085 It is actual, although is for Qt 5.9.

    – S.M.
    Feb 24 '18 at 7:08











  • "D:pograml files..." - Typo? I would check whether this vcvarsall.bat can be found at the noted location. Probably the error is - it cannot. vcvarsall.bat is a batch file which sets some env. variables to support using MSVC on command line. (Qt creator probably uses it for simple location of MS build tools.)

    – Scheff
    Feb 24 '18 at 7:16


















  • Read this post forum.qt.io/post/392085 It is actual, although is for Qt 5.9.

    – S.M.
    Feb 24 '18 at 7:08











  • "D:pograml files..." - Typo? I would check whether this vcvarsall.bat can be found at the noted location. Probably the error is - it cannot. vcvarsall.bat is a batch file which sets some env. variables to support using MSVC on command line. (Qt creator probably uses it for simple location of MS build tools.)

    – Scheff
    Feb 24 '18 at 7:16

















Read this post forum.qt.io/post/392085 It is actual, although is for Qt 5.9.

– S.M.
Feb 24 '18 at 7:08





Read this post forum.qt.io/post/392085 It is actual, although is for Qt 5.9.

– S.M.
Feb 24 '18 at 7:08













"D:pograml files..." - Typo? I would check whether this vcvarsall.bat can be found at the noted location. Probably the error is - it cannot. vcvarsall.bat is a batch file which sets some env. variables to support using MSVC on command line. (Qt creator probably uses it for simple location of MS build tools.)

– Scheff
Feb 24 '18 at 7:16






"D:pograml files..." - Typo? I would check whether this vcvarsall.bat can be found at the noted location. Probably the error is - it cannot. vcvarsall.bat is a batch file which sets some env. variables to support using MSVC on command line. (Qt creator probably uses it for simple location of MS build tools.)

– Scheff
Feb 24 '18 at 7:16













4 Answers
4






active

oldest

votes


















2














To add to the answer of @John Wesley, I too had to alter my system's PATH enviroment variable to fix the "failed to retrieve msvc environment" error. However, my problem was slightly different.



In short, remove any unused locations from you PATH.



To explain, my PATH contained the follow entries in the following order:



C:Program Files (x86)Common FilesOracleJavajavapath;
C:ProgramDataOracleJavajavapath;
C:Program Files (x86)InteliCLS Client;
C:Program FilesInteliCLS Client;
C:Windowssystem32;
C:Windows;
C:WindowsSystem32Wbem;
[lots more enties followed...]


Hence my case was different to John's because it already had the required entries of:



C:Windowssystem32;
C:Windows;
C:WindowsSystem32Wbem;


The fix for my system was to delete the first two items (which I do not need because I manually set my Java paths). After I did that, I reopened Qt Creator and it worked!



It has been working for the past week without problem, however, sometimes the message "failed to retrieve msvc environment" still pops up for a moment, but then disappears again.






share|improve this answer























  • So whats the relation of the PATH entries to the problem? which entries in my case could be causing such issue?!

    – Mohammad Kanan
    Sep 15 '18 at 6:54






  • 1





    @MohammadKanan I don't know for certain without knowing what is on your PATH. I can confirm that the above fix is still working weeks later. I don't know exactly why, but simplifying your PATH is a good first step to diagnose the problem.

    – Andrew Bate
    Sep 19 '18 at 23:21


















1














I met this error building qt project in Qt Creator. then solved by adding some paths to my system path, which not included them before.



  • C:WindowsSystem32

  • C:Windows

  • C:WindowsSystem32Wbem

Then reopen Qt Creator.






share|improve this answer
































    1














    When Qt starts, I used to get a list of 10 errors related to MSVC kit because each detected MSVC platform compiler has an Initialization script for setting environment. like:



    C:Program Files (x86)Microsoft Visual Studio2017CommunityVCAuxiliaryBuildvcvarsall.bat x86_amd64


    I traced the failure by running all Initialization one by one on same command line (cmd) window; In the beginning I used to run only Initialization for x86_amd64 which runs without errors thus I didn't notice anything wrong. But on same window running Initialization for next compiler " ...vcvarsall.bat x86_amd64" the error appeared which in my case was something like:




    " ..program FilesMySQLUtilities xxx was not expected at this time"




    I just checked and found that path does not exist at all in my storage, so I removed it from PATH system env settings, and surprised things went normal after that!






    share|improve this answer






























      1














      I faced the same problem as you. I use Visual Studio 2017 Community Edition with Qt 5.6.0. Windows 10.



      In the beginning, I used "Visual Studio Installer" to repair. However it does not work.



      Then I append "C:WindowsSystem32" to "PATH" variable to Environment variables" since chcp is a exe in System3 and somehow I cannot find "C:WindowsSystem32" in "PATH".



      After that, I delete the Visual Studio (C:Program Files (x86)Microsoft Visual Studio) directly from File Explorer. ( I shift+deleted it )



      Then re-install the "Visual Studio 2017" again.



      It works!



      I do not know which step is important. I think to add System32 to PATH variable and re-install VS2017 may the solution






      share|improve this answer






















        Your Answer






        StackExchange.ifUsing("editor", function ()
        StackExchange.using("externalEditor", function ()
        StackExchange.using("snippets", function ()
        StackExchange.snippets.init();
        );
        );
        , "code-snippets");

        StackExchange.ready(function()
        var channelOptions =
        tags: "".split(" "),
        id: "1"
        ;
        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%2fstackoverflow.com%2fquestions%2f48960065%2fqt-creator-5-10-failed-to-retrieve-msvc-environment-error%23new-answer', 'question_page');

        );

        Post as a guest















        Required, but never shown

























        4 Answers
        4






        active

        oldest

        votes








        4 Answers
        4






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        2














        To add to the answer of @John Wesley, I too had to alter my system's PATH enviroment variable to fix the "failed to retrieve msvc environment" error. However, my problem was slightly different.



        In short, remove any unused locations from you PATH.



        To explain, my PATH contained the follow entries in the following order:



        C:Program Files (x86)Common FilesOracleJavajavapath;
        C:ProgramDataOracleJavajavapath;
        C:Program Files (x86)InteliCLS Client;
        C:Program FilesInteliCLS Client;
        C:Windowssystem32;
        C:Windows;
        C:WindowsSystem32Wbem;
        [lots more enties followed...]


        Hence my case was different to John's because it already had the required entries of:



        C:Windowssystem32;
        C:Windows;
        C:WindowsSystem32Wbem;


        The fix for my system was to delete the first two items (which I do not need because I manually set my Java paths). After I did that, I reopened Qt Creator and it worked!



        It has been working for the past week without problem, however, sometimes the message "failed to retrieve msvc environment" still pops up for a moment, but then disappears again.






        share|improve this answer























        • So whats the relation of the PATH entries to the problem? which entries in my case could be causing such issue?!

          – Mohammad Kanan
          Sep 15 '18 at 6:54






        • 1





          @MohammadKanan I don't know for certain without knowing what is on your PATH. I can confirm that the above fix is still working weeks later. I don't know exactly why, but simplifying your PATH is a good first step to diagnose the problem.

          – Andrew Bate
          Sep 19 '18 at 23:21















        2














        To add to the answer of @John Wesley, I too had to alter my system's PATH enviroment variable to fix the "failed to retrieve msvc environment" error. However, my problem was slightly different.



        In short, remove any unused locations from you PATH.



        To explain, my PATH contained the follow entries in the following order:



        C:Program Files (x86)Common FilesOracleJavajavapath;
        C:ProgramDataOracleJavajavapath;
        C:Program Files (x86)InteliCLS Client;
        C:Program FilesInteliCLS Client;
        C:Windowssystem32;
        C:Windows;
        C:WindowsSystem32Wbem;
        [lots more enties followed...]


        Hence my case was different to John's because it already had the required entries of:



        C:Windowssystem32;
        C:Windows;
        C:WindowsSystem32Wbem;


        The fix for my system was to delete the first two items (which I do not need because I manually set my Java paths). After I did that, I reopened Qt Creator and it worked!



        It has been working for the past week without problem, however, sometimes the message "failed to retrieve msvc environment" still pops up for a moment, but then disappears again.






        share|improve this answer























        • So whats the relation of the PATH entries to the problem? which entries in my case could be causing such issue?!

          – Mohammad Kanan
          Sep 15 '18 at 6:54






        • 1





          @MohammadKanan I don't know for certain without knowing what is on your PATH. I can confirm that the above fix is still working weeks later. I don't know exactly why, but simplifying your PATH is a good first step to diagnose the problem.

          – Andrew Bate
          Sep 19 '18 at 23:21













        2












        2








        2







        To add to the answer of @John Wesley, I too had to alter my system's PATH enviroment variable to fix the "failed to retrieve msvc environment" error. However, my problem was slightly different.



        In short, remove any unused locations from you PATH.



        To explain, my PATH contained the follow entries in the following order:



        C:Program Files (x86)Common FilesOracleJavajavapath;
        C:ProgramDataOracleJavajavapath;
        C:Program Files (x86)InteliCLS Client;
        C:Program FilesInteliCLS Client;
        C:Windowssystem32;
        C:Windows;
        C:WindowsSystem32Wbem;
        [lots more enties followed...]


        Hence my case was different to John's because it already had the required entries of:



        C:Windowssystem32;
        C:Windows;
        C:WindowsSystem32Wbem;


        The fix for my system was to delete the first two items (which I do not need because I manually set my Java paths). After I did that, I reopened Qt Creator and it worked!



        It has been working for the past week without problem, however, sometimes the message "failed to retrieve msvc environment" still pops up for a moment, but then disappears again.






        share|improve this answer













        To add to the answer of @John Wesley, I too had to alter my system's PATH enviroment variable to fix the "failed to retrieve msvc environment" error. However, my problem was slightly different.



        In short, remove any unused locations from you PATH.



        To explain, my PATH contained the follow entries in the following order:



        C:Program Files (x86)Common FilesOracleJavajavapath;
        C:ProgramDataOracleJavajavapath;
        C:Program Files (x86)InteliCLS Client;
        C:Program FilesInteliCLS Client;
        C:Windowssystem32;
        C:Windows;
        C:WindowsSystem32Wbem;
        [lots more enties followed...]


        Hence my case was different to John's because it already had the required entries of:



        C:Windowssystem32;
        C:Windows;
        C:WindowsSystem32Wbem;


        The fix for my system was to delete the first two items (which I do not need because I manually set my Java paths). After I did that, I reopened Qt Creator and it worked!



        It has been working for the past week without problem, however, sometimes the message "failed to retrieve msvc environment" still pops up for a moment, but then disappears again.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Aug 2 '18 at 16:25









        Andrew BateAndrew Bate

        304211




        304211












        • So whats the relation of the PATH entries to the problem? which entries in my case could be causing such issue?!

          – Mohammad Kanan
          Sep 15 '18 at 6:54






        • 1





          @MohammadKanan I don't know for certain without knowing what is on your PATH. I can confirm that the above fix is still working weeks later. I don't know exactly why, but simplifying your PATH is a good first step to diagnose the problem.

          – Andrew Bate
          Sep 19 '18 at 23:21

















        • So whats the relation of the PATH entries to the problem? which entries in my case could be causing such issue?!

          – Mohammad Kanan
          Sep 15 '18 at 6:54






        • 1





          @MohammadKanan I don't know for certain without knowing what is on your PATH. I can confirm that the above fix is still working weeks later. I don't know exactly why, but simplifying your PATH is a good first step to diagnose the problem.

          – Andrew Bate
          Sep 19 '18 at 23:21
















        So whats the relation of the PATH entries to the problem? which entries in my case could be causing such issue?!

        – Mohammad Kanan
        Sep 15 '18 at 6:54





        So whats the relation of the PATH entries to the problem? which entries in my case could be causing such issue?!

        – Mohammad Kanan
        Sep 15 '18 at 6:54




        1




        1





        @MohammadKanan I don't know for certain without knowing what is on your PATH. I can confirm that the above fix is still working weeks later. I don't know exactly why, but simplifying your PATH is a good first step to diagnose the problem.

        – Andrew Bate
        Sep 19 '18 at 23:21





        @MohammadKanan I don't know for certain without knowing what is on your PATH. I can confirm that the above fix is still working weeks later. I don't know exactly why, but simplifying your PATH is a good first step to diagnose the problem.

        – Andrew Bate
        Sep 19 '18 at 23:21













        1














        I met this error building qt project in Qt Creator. then solved by adding some paths to my system path, which not included them before.



        • C:WindowsSystem32

        • C:Windows

        • C:WindowsSystem32Wbem

        Then reopen Qt Creator.






        share|improve this answer





























          1














          I met this error building qt project in Qt Creator. then solved by adding some paths to my system path, which not included them before.



          • C:WindowsSystem32

          • C:Windows

          • C:WindowsSystem32Wbem

          Then reopen Qt Creator.






          share|improve this answer



























            1












            1








            1







            I met this error building qt project in Qt Creator. then solved by adding some paths to my system path, which not included them before.



            • C:WindowsSystem32

            • C:Windows

            • C:WindowsSystem32Wbem

            Then reopen Qt Creator.






            share|improve this answer















            I met this error building qt project in Qt Creator. then solved by adding some paths to my system path, which not included them before.



            • C:WindowsSystem32

            • C:Windows

            • C:WindowsSystem32Wbem

            Then reopen Qt Creator.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Apr 19 '18 at 13:43









            Stephen Rauch

            30.1k153758




            30.1k153758










            answered Apr 19 '18 at 13:23









            John WesleyJohn Wesley

            112




            112





















                1














                When Qt starts, I used to get a list of 10 errors related to MSVC kit because each detected MSVC platform compiler has an Initialization script for setting environment. like:



                C:Program Files (x86)Microsoft Visual Studio2017CommunityVCAuxiliaryBuildvcvarsall.bat x86_amd64


                I traced the failure by running all Initialization one by one on same command line (cmd) window; In the beginning I used to run only Initialization for x86_amd64 which runs without errors thus I didn't notice anything wrong. But on same window running Initialization for next compiler " ...vcvarsall.bat x86_amd64" the error appeared which in my case was something like:




                " ..program FilesMySQLUtilities xxx was not expected at this time"




                I just checked and found that path does not exist at all in my storage, so I removed it from PATH system env settings, and surprised things went normal after that!






                share|improve this answer



























                  1














                  When Qt starts, I used to get a list of 10 errors related to MSVC kit because each detected MSVC platform compiler has an Initialization script for setting environment. like:



                  C:Program Files (x86)Microsoft Visual Studio2017CommunityVCAuxiliaryBuildvcvarsall.bat x86_amd64


                  I traced the failure by running all Initialization one by one on same command line (cmd) window; In the beginning I used to run only Initialization for x86_amd64 which runs without errors thus I didn't notice anything wrong. But on same window running Initialization for next compiler " ...vcvarsall.bat x86_amd64" the error appeared which in my case was something like:




                  " ..program FilesMySQLUtilities xxx was not expected at this time"




                  I just checked and found that path does not exist at all in my storage, so I removed it from PATH system env settings, and surprised things went normal after that!






                  share|improve this answer

























                    1












                    1








                    1







                    When Qt starts, I used to get a list of 10 errors related to MSVC kit because each detected MSVC platform compiler has an Initialization script for setting environment. like:



                    C:Program Files (x86)Microsoft Visual Studio2017CommunityVCAuxiliaryBuildvcvarsall.bat x86_amd64


                    I traced the failure by running all Initialization one by one on same command line (cmd) window; In the beginning I used to run only Initialization for x86_amd64 which runs without errors thus I didn't notice anything wrong. But on same window running Initialization for next compiler " ...vcvarsall.bat x86_amd64" the error appeared which in my case was something like:




                    " ..program FilesMySQLUtilities xxx was not expected at this time"




                    I just checked and found that path does not exist at all in my storage, so I removed it from PATH system env settings, and surprised things went normal after that!






                    share|improve this answer













                    When Qt starts, I used to get a list of 10 errors related to MSVC kit because each detected MSVC platform compiler has an Initialization script for setting environment. like:



                    C:Program Files (x86)Microsoft Visual Studio2017CommunityVCAuxiliaryBuildvcvarsall.bat x86_amd64


                    I traced the failure by running all Initialization one by one on same command line (cmd) window; In the beginning I used to run only Initialization for x86_amd64 which runs without errors thus I didn't notice anything wrong. But on same window running Initialization for next compiler " ...vcvarsall.bat x86_amd64" the error appeared which in my case was something like:




                    " ..program FilesMySQLUtilities xxx was not expected at this time"




                    I just checked and found that path does not exist at all in my storage, so I removed it from PATH system env settings, and surprised things went normal after that!







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Sep 20 '18 at 13:00









                    Mohammad KananMohammad Kanan

                    2,724101528




                    2,724101528





















                        1














                        I faced the same problem as you. I use Visual Studio 2017 Community Edition with Qt 5.6.0. Windows 10.



                        In the beginning, I used "Visual Studio Installer" to repair. However it does not work.



                        Then I append "C:WindowsSystem32" to "PATH" variable to Environment variables" since chcp is a exe in System3 and somehow I cannot find "C:WindowsSystem32" in "PATH".



                        After that, I delete the Visual Studio (C:Program Files (x86)Microsoft Visual Studio) directly from File Explorer. ( I shift+deleted it )



                        Then re-install the "Visual Studio 2017" again.



                        It works!



                        I do not know which step is important. I think to add System32 to PATH variable and re-install VS2017 may the solution






                        share|improve this answer



























                          1














                          I faced the same problem as you. I use Visual Studio 2017 Community Edition with Qt 5.6.0. Windows 10.



                          In the beginning, I used "Visual Studio Installer" to repair. However it does not work.



                          Then I append "C:WindowsSystem32" to "PATH" variable to Environment variables" since chcp is a exe in System3 and somehow I cannot find "C:WindowsSystem32" in "PATH".



                          After that, I delete the Visual Studio (C:Program Files (x86)Microsoft Visual Studio) directly from File Explorer. ( I shift+deleted it )



                          Then re-install the "Visual Studio 2017" again.



                          It works!



                          I do not know which step is important. I think to add System32 to PATH variable and re-install VS2017 may the solution






                          share|improve this answer

























                            1












                            1








                            1







                            I faced the same problem as you. I use Visual Studio 2017 Community Edition with Qt 5.6.0. Windows 10.



                            In the beginning, I used "Visual Studio Installer" to repair. However it does not work.



                            Then I append "C:WindowsSystem32" to "PATH" variable to Environment variables" since chcp is a exe in System3 and somehow I cannot find "C:WindowsSystem32" in "PATH".



                            After that, I delete the Visual Studio (C:Program Files (x86)Microsoft Visual Studio) directly from File Explorer. ( I shift+deleted it )



                            Then re-install the "Visual Studio 2017" again.



                            It works!



                            I do not know which step is important. I think to add System32 to PATH variable and re-install VS2017 may the solution






                            share|improve this answer













                            I faced the same problem as you. I use Visual Studio 2017 Community Edition with Qt 5.6.0. Windows 10.



                            In the beginning, I used "Visual Studio Installer" to repair. However it does not work.



                            Then I append "C:WindowsSystem32" to "PATH" variable to Environment variables" since chcp is a exe in System3 and somehow I cannot find "C:WindowsSystem32" in "PATH".



                            After that, I delete the Visual Studio (C:Program Files (x86)Microsoft Visual Studio) directly from File Explorer. ( I shift+deleted it )



                            Then re-install the "Visual Studio 2017" again.



                            It works!



                            I do not know which step is important. I think to add System32 to PATH variable and re-install VS2017 may the solution







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Oct 11 '18 at 3:32









                            MooMooMooMoo

                            194212




                            194212



























                                draft saved

                                draft discarded
















































                                Thanks for contributing an answer to Stack Overflow!


                                • 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%2fstackoverflow.com%2fquestions%2f48960065%2fqt-creator-5-10-failed-to-retrieve-msvc-environment-error%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







                                這個網誌中的熱門文章

                                Barbados

                                How to read a connectionString WITH PROVIDER in .NET Core?

                                Node.js Script on GitHub Pages or Amazon S3