我已通过此代码阻止所有usb。它将阻止所有USB端口。
RegistryKey key = Registry.LocalMachine.OpenSubKey
("SYSTEM\\CurrentControlSet\\Services\\UsbStor",true);
if (key != null)
{
key.SetValue("Start", 4, RegistryValueKind.DWord);
}
key.Close();
并使用此代码取消阻止。但它会取消阻止所有usb端口。
RegistryKey key = Registry.LocalMachine.OpenSubKey
("SYSTEM\\CurrentControlSet\\Services\\UsbStor", true);
if (key != null)
{
key.SetValue("Start", 3, RegistryValueKind.DWord);
}
key.Close();
我的问题是只解锁特定的USB端口。我们如何只解锁一个USB端口。
请帮帮我。
提前致谢。
答案 0 :(得分:0)
我认为将端口与另一端口区分开是不可能的,因为USB是一种总线。