What causes “The INF file you selected does not support this method of installation.” error?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







8















This question is related to this one. Also, I think it's not duplicate of this question, since I'm not asking about specific device but a more general case.



Where can I find information about driver .inf files and how windows checks if they are usable? I know that many people do modify .inf files so there must be some information on the Internet.



Basically I have a bad .inf file and would like to see what's wrong with it and how to fix it if possible.










share|improve this question































    8















    This question is related to this one. Also, I think it's not duplicate of this question, since I'm not asking about specific device but a more general case.



    Where can I find information about driver .inf files and how windows checks if they are usable? I know that many people do modify .inf files so there must be some information on the Internet.



    Basically I have a bad .inf file and would like to see what's wrong with it and how to fix it if possible.










    share|improve this question



























      8












      8








      8


      4






      This question is related to this one. Also, I think it's not duplicate of this question, since I'm not asking about specific device but a more general case.



      Where can I find information about driver .inf files and how windows checks if they are usable? I know that many people do modify .inf files so there must be some information on the Internet.



      Basically I have a bad .inf file and would like to see what's wrong with it and how to fix it if possible.










      share|improve this question
















      This question is related to this one. Also, I think it's not duplicate of this question, since I'm not asking about specific device but a more general case.



      Where can I find information about driver .inf files and how windows checks if they are usable? I know that many people do modify .inf files so there must be some information on the Internet.



      Basically I have a bad .inf file and would like to see what's wrong with it and how to fix it if possible.







      windows-7 drivers inf






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 20 '17 at 10:04









      Community

      1




      1










      asked Nov 15 '10 at 9:13









      AndrejaKoAndrejaKo

      14.8k1867117




      14.8k1867117






















          3 Answers
          3






          active

          oldest

          votes


















          3














          INF files format reference: http://msdn.microsoft.com/en-us/library/ms764958(v=VS.85).aspx



          It would help to read the Creating Setup Applications (http://msdn.microsoft.com/en-us/library/aa376920(v=VS.85).aspx) page to learn the sequence followed, so you can step through the INF manually. I suppose a programmer could attach a debugger to setup and figure out what its failing on.






          share|improve this answer
























          • Unfortunately there's no debugger for INF files. Attaching a debugger to setup.exe would not be much useful unless you had setup's source code and private symbols.

            – Jamie Hanrahan
            Mar 9 at 4:16





















          9














          In order for the "Right Click/Install" method to work, there must be a [DefaultInstall] section in the INF file and, potentially some other "Default" sections:



          [DefaultInstall.Service] 
          [DefaultUninstall]
          [DefaultUninstall.Service]


          http://msdn.microsoft.com/en-us/library/windows/hardware/ff547465(v=vs.85).aspx



          If there is no [DefaultInstall] section, you get the message “The INF file you selected does not support this method of installation.”






          share|improve this answer

































            3














            You might try to select the inf file from Device Manager:



            Right-click the device, select Update Driver Software, then Let me pick, click Have disk, Browse to the inf file and install.



            If this doesn't work, I don't believe you can fix the inf file. The product you have probably doesn't match your operating system (it might be 32-bit when your Windows 7 is 64-bit).



            You can also give more information, such as posting the inf file (actually the entire product, if possible).






            share|improve this answer
























            • The .inf is correct because it did work on vista (but device manager method does not work for me on seven). I have 64bit seven and 64bit driver. I was asking here for general causes. Here is my question about my specific problems with my card reader.

              – AndrejaKo
              Nov 15 '10 at 15:59













            • You could also try to right-click the inf file and choose Install. Some inf files are funny this way, and will only work in one way, generating otherwise the above message.

              – harrymc
              Nov 15 '10 at 16:54












            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%2f210943%2fwhat-causes-the-inf-file-you-selected-does-not-support-this-method-of-installat%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            3 Answers
            3






            active

            oldest

            votes








            3 Answers
            3






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            3














            INF files format reference: http://msdn.microsoft.com/en-us/library/ms764958(v=VS.85).aspx



            It would help to read the Creating Setup Applications (http://msdn.microsoft.com/en-us/library/aa376920(v=VS.85).aspx) page to learn the sequence followed, so you can step through the INF manually. I suppose a programmer could attach a debugger to setup and figure out what its failing on.






            share|improve this answer
























            • Unfortunately there's no debugger for INF files. Attaching a debugger to setup.exe would not be much useful unless you had setup's source code and private symbols.

              – Jamie Hanrahan
              Mar 9 at 4:16


















            3














            INF files format reference: http://msdn.microsoft.com/en-us/library/ms764958(v=VS.85).aspx



            It would help to read the Creating Setup Applications (http://msdn.microsoft.com/en-us/library/aa376920(v=VS.85).aspx) page to learn the sequence followed, so you can step through the INF manually. I suppose a programmer could attach a debugger to setup and figure out what its failing on.






            share|improve this answer
























            • Unfortunately there's no debugger for INF files. Attaching a debugger to setup.exe would not be much useful unless you had setup's source code and private symbols.

              – Jamie Hanrahan
              Mar 9 at 4:16
















            3












            3








            3







            INF files format reference: http://msdn.microsoft.com/en-us/library/ms764958(v=VS.85).aspx



            It would help to read the Creating Setup Applications (http://msdn.microsoft.com/en-us/library/aa376920(v=VS.85).aspx) page to learn the sequence followed, so you can step through the INF manually. I suppose a programmer could attach a debugger to setup and figure out what its failing on.






            share|improve this answer













            INF files format reference: http://msdn.microsoft.com/en-us/library/ms764958(v=VS.85).aspx



            It would help to read the Creating Setup Applications (http://msdn.microsoft.com/en-us/library/aa376920(v=VS.85).aspx) page to learn the sequence followed, so you can step through the INF manually. I suppose a programmer could attach a debugger to setup and figure out what its failing on.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Nov 16 '10 at 0:37









            Robert KerrRobert Kerr

            5231123




            5231123













            • Unfortunately there's no debugger for INF files. Attaching a debugger to setup.exe would not be much useful unless you had setup's source code and private symbols.

              – Jamie Hanrahan
              Mar 9 at 4:16





















            • Unfortunately there's no debugger for INF files. Attaching a debugger to setup.exe would not be much useful unless you had setup's source code and private symbols.

              – Jamie Hanrahan
              Mar 9 at 4:16



















            Unfortunately there's no debugger for INF files. Attaching a debugger to setup.exe would not be much useful unless you had setup's source code and private symbols.

            – Jamie Hanrahan
            Mar 9 at 4:16







            Unfortunately there's no debugger for INF files. Attaching a debugger to setup.exe would not be much useful unless you had setup's source code and private symbols.

            – Jamie Hanrahan
            Mar 9 at 4:16















            9














            In order for the "Right Click/Install" method to work, there must be a [DefaultInstall] section in the INF file and, potentially some other "Default" sections:



            [DefaultInstall.Service] 
            [DefaultUninstall]
            [DefaultUninstall.Service]


            http://msdn.microsoft.com/en-us/library/windows/hardware/ff547465(v=vs.85).aspx



            If there is no [DefaultInstall] section, you get the message “The INF file you selected does not support this method of installation.”






            share|improve this answer






























              9














              In order for the "Right Click/Install" method to work, there must be a [DefaultInstall] section in the INF file and, potentially some other "Default" sections:



              [DefaultInstall.Service] 
              [DefaultUninstall]
              [DefaultUninstall.Service]


              http://msdn.microsoft.com/en-us/library/windows/hardware/ff547465(v=vs.85).aspx



              If there is no [DefaultInstall] section, you get the message “The INF file you selected does not support this method of installation.”






              share|improve this answer




























                9












                9








                9







                In order for the "Right Click/Install" method to work, there must be a [DefaultInstall] section in the INF file and, potentially some other "Default" sections:



                [DefaultInstall.Service] 
                [DefaultUninstall]
                [DefaultUninstall.Service]


                http://msdn.microsoft.com/en-us/library/windows/hardware/ff547465(v=vs.85).aspx



                If there is no [DefaultInstall] section, you get the message “The INF file you selected does not support this method of installation.”






                share|improve this answer















                In order for the "Right Click/Install" method to work, there must be a [DefaultInstall] section in the INF file and, potentially some other "Default" sections:



                [DefaultInstall.Service] 
                [DefaultUninstall]
                [DefaultUninstall.Service]


                http://msdn.microsoft.com/en-us/library/windows/hardware/ff547465(v=vs.85).aspx



                If there is no [DefaultInstall] section, you get the message “The INF file you selected does not support this method of installation.”







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Mar 9 at 2:58









                greatwolf

                1,56111227




                1,56111227










                answered Nov 14 '12 at 23:01









                MrTheVMrTheV

                9112




                9112























                    3














                    You might try to select the inf file from Device Manager:



                    Right-click the device, select Update Driver Software, then Let me pick, click Have disk, Browse to the inf file and install.



                    If this doesn't work, I don't believe you can fix the inf file. The product you have probably doesn't match your operating system (it might be 32-bit when your Windows 7 is 64-bit).



                    You can also give more information, such as posting the inf file (actually the entire product, if possible).






                    share|improve this answer
























                    • The .inf is correct because it did work on vista (but device manager method does not work for me on seven). I have 64bit seven and 64bit driver. I was asking here for general causes. Here is my question about my specific problems with my card reader.

                      – AndrejaKo
                      Nov 15 '10 at 15:59













                    • You could also try to right-click the inf file and choose Install. Some inf files are funny this way, and will only work in one way, generating otherwise the above message.

                      – harrymc
                      Nov 15 '10 at 16:54
















                    3














                    You might try to select the inf file from Device Manager:



                    Right-click the device, select Update Driver Software, then Let me pick, click Have disk, Browse to the inf file and install.



                    If this doesn't work, I don't believe you can fix the inf file. The product you have probably doesn't match your operating system (it might be 32-bit when your Windows 7 is 64-bit).



                    You can also give more information, such as posting the inf file (actually the entire product, if possible).






                    share|improve this answer
























                    • The .inf is correct because it did work on vista (but device manager method does not work for me on seven). I have 64bit seven and 64bit driver. I was asking here for general causes. Here is my question about my specific problems with my card reader.

                      – AndrejaKo
                      Nov 15 '10 at 15:59













                    • You could also try to right-click the inf file and choose Install. Some inf files are funny this way, and will only work in one way, generating otherwise the above message.

                      – harrymc
                      Nov 15 '10 at 16:54














                    3












                    3








                    3







                    You might try to select the inf file from Device Manager:



                    Right-click the device, select Update Driver Software, then Let me pick, click Have disk, Browse to the inf file and install.



                    If this doesn't work, I don't believe you can fix the inf file. The product you have probably doesn't match your operating system (it might be 32-bit when your Windows 7 is 64-bit).



                    You can also give more information, such as posting the inf file (actually the entire product, if possible).






                    share|improve this answer













                    You might try to select the inf file from Device Manager:



                    Right-click the device, select Update Driver Software, then Let me pick, click Have disk, Browse to the inf file and install.



                    If this doesn't work, I don't believe you can fix the inf file. The product you have probably doesn't match your operating system (it might be 32-bit when your Windows 7 is 64-bit).



                    You can also give more information, such as posting the inf file (actually the entire product, if possible).







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Nov 15 '10 at 12:42









                    harrymcharrymc

                    265k14274583




                    265k14274583













                    • The .inf is correct because it did work on vista (but device manager method does not work for me on seven). I have 64bit seven and 64bit driver. I was asking here for general causes. Here is my question about my specific problems with my card reader.

                      – AndrejaKo
                      Nov 15 '10 at 15:59













                    • You could also try to right-click the inf file and choose Install. Some inf files are funny this way, and will only work in one way, generating otherwise the above message.

                      – harrymc
                      Nov 15 '10 at 16:54



















                    • The .inf is correct because it did work on vista (but device manager method does not work for me on seven). I have 64bit seven and 64bit driver. I was asking here for general causes. Here is my question about my specific problems with my card reader.

                      – AndrejaKo
                      Nov 15 '10 at 15:59













                    • You could also try to right-click the inf file and choose Install. Some inf files are funny this way, and will only work in one way, generating otherwise the above message.

                      – harrymc
                      Nov 15 '10 at 16:54

















                    The .inf is correct because it did work on vista (but device manager method does not work for me on seven). I have 64bit seven and 64bit driver. I was asking here for general causes. Here is my question about my specific problems with my card reader.

                    – AndrejaKo
                    Nov 15 '10 at 15:59







                    The .inf is correct because it did work on vista (but device manager method does not work for me on seven). I have 64bit seven and 64bit driver. I was asking here for general causes. Here is my question about my specific problems with my card reader.

                    – AndrejaKo
                    Nov 15 '10 at 15:59















                    You could also try to right-click the inf file and choose Install. Some inf files are funny this way, and will only work in one way, generating otherwise the above message.

                    – harrymc
                    Nov 15 '10 at 16:54





                    You could also try to right-click the inf file and choose Install. Some inf files are funny this way, and will only work in one way, generating otherwise the above message.

                    – harrymc
                    Nov 15 '10 at 16:54


















                    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%2f210943%2fwhat-causes-the-inf-file-you-selected-does-not-support-this-method-of-installat%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

                    Probability when a professor distributes a quiz and homework assignment to a class of n students.

                    Aardman Animations

                    Are they similar matrix