我在c#.net.by中创建了windows应用程序,我禁用了windows中的usb端口,我希望能够访问usb设备以连接到windows所以其他设备通过windows进行连接。如何在c#.net中执行此操作
// disable USB storage...
Microsoft.Win32.Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR", "Start", 4, Microsoft.Win32.RegistryValueKind.DWord);
MessageBox.Show("Disabled");
//enable USB storage...
Microsoft.Win32.Registry.SetValue(@"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR", "Start", 3, Microsoft.Win32.RegistryValueKind.DWord);
MessageBox.Show("Enabled");
例如我将所需的每个usb deivce添加到列表中,之后添加的这些设备可以被windows检测到