0
私はこのコードを通してすべてのUSBをブロックしました。それはすべての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ポートを1つだけブロック解除する方法。
私を助けてください。
ありがとうございます。