您的位置:首页 > 其它

How to prevent from writing into USB drive by GPO

2006-09-05 17:55 459 查看
Create a key "StorageDevicePolicies" under HKLM/System/CURRENTControlSet/Control.

then create a value DWORD key named "WriteProtect" under the Key.  Set 1 to enable the protect

Write a ADM file to apply the setting by GPO:

Class Machine

CATEGORY "System"
 
 CATEGORY "USB"
 
  KEYNAME "System/CurrentControlSet/Control/StorageDevicePolicies"
   EXPLAIN !!USBExplaination
   POLICY "Enable USB write protect"
    VALUENAME "WriteProtect"
     VALUEOFF NUMERIC 0
     VALUEON NUMERIC 1
   End POLICY
   
 END GATEGORY
 
END GATEGORY

[Strings]
USBExplaination = "Config the USB write protection"
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  system class file
相关文章推荐