7

I want a command for the Windows commandline which shows all PCI BUS connected Devices information like , LSPCI command does in LINUX . Can I use WMIC TOOL in XP to get that info . If so please help me in giving a step by step procedure in getting that information .

LawrenceC
  • 75,182
Aditya
  • 71
  • 1
  • 1
  • 2

1 Answers1

5

There is not a command-line method to enumerate PCI devices included with Windows XP. However, you can download the DevCon utility from Microsoft and use it to accomplish this.

The above link lists all the command line options for it, including this one that will list all present PCI devices:

devcon find pci\*

Save the contents of the package in a directory from where you run the script. For example, if you save the contents in Downloads, cd to the directory in Command Prompt and then type the line.

Patches
  • 16,572