Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要找到一种方法来启用和禁用 cd 驱动程序,就像您可以在设备管理器中右键单击该项目一样。我在看WMI。如果有人有任何想法,请告诉我。谢谢
您可以在 Windows 中使用 DevCon 来禁用特定设备。
http://msdn.microsoft.com/en-us/library/windows/hardware/ff544746(v=vs.85).aspx#ddk_example_31_disable_devices_by_device_instance_id_tools
使用 sc 命令。它提供驱动程序和服务。在列表中,它默认为仅服务,但可以被告知做驱动程序。它加载/卸载驱动程序或设置它的加载方式。
sc query type= driver
卸载
sc stop cdrom
从开始设置
sc config cdrom start= disabled
设置为作为引导驱动程序启动
sc config cdrom start= boot