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;
}
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
add a comment |
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
add a comment |
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
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
windows-7 drivers inf
edited Mar 20 '17 at 10:04
Community♦
1
1
asked Nov 15 '10 at 9:13
AndrejaKoAndrejaKo
14.8k1867117
14.8k1867117
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
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.
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
add a comment |
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.”
add a comment |
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).
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.”
add a comment |
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.”
add a comment |
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.”
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.”
edited Mar 9 at 2:58
greatwolf
1,56111227
1,56111227
answered Nov 14 '12 at 23:01
MrTheVMrTheV
9112
9112
add a comment |
add a comment |
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).
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
add a comment |
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).
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
add a comment |
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).
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).
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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