DDR爱好者之家 Design By 杰米
USB存储设备控制 By Yu2n
XP系统测试通过,需要管理员权限。
在下次插拔设备时生效,无须重启。
'USB_Stock_Block.vbs '=========================================================================================== CheckOS ' 检查操作系统版本 CheckMeState ' 检查程序运行状态 main ' 执行主程序 '=========================================================================================== '主函数 Sub main() Dim wso, windir, EnableUSB Set wso = CreateObject("WScript.Shell") Set objNetwork = CreateObject("wscript.network") strComputer = objNetwork.ComputerName If wso.Popup(VbCrLf & "禁用 USB 存储设备,请按“确定”"& VbCrLf & _ VbCrLf & "启用 USB 存储设备,请按“取消” (6秒后自动取消)" _ , 6, "USB 存储设备控制 - 主菜单", 48+4096+1) = 1 Then EnableUSB = 0 Else EnableUSB = 1 End If If Exist( "C:\windows\system32\cmd.exe" ) Then windir = "windows" If Exist( "C:\winnt\system32\cmd.exe" ) Then windir = "winnt" If EnableUSB = 1 Then wso.RegWrite "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies\WriteProtect","1","REG_DWORD" '禁止写入 wso.RegWrite "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR\Start","3","REG_DWORD" '启用USBStor Move "C:\" & windir & "\inf\usbstor.pnf_" , "C:\" & windir & "\inf\usbstor.pnf" Move "C:\" & windir & "\inf\usbstor.inf_" , "C:\" & windir & "\inf\usbstor.inf" Move "C:\" & windir & "\system32\drivers\usbstor.sys_" , "C:\" & windir & "\system32\drivers\usbstor.sys" If (Not Exist( "C:\" & windir & "\inf\usbstor.pnf_" )) And (regKeyRead( "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR\Start" ) = 3 ) Then wso.Popup VbCrLf & "启用 USB 存储设备成功。 ", 5, "USB 存储设备控制 - 操作完成", 64+4096 Else wso.Popup VbCrLf & "启用 USB 存储设备失败。 ", 5, "USB 存储设备控制 - 操作完成", 16+4096 End If Else wso.RegWrite "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies\WriteProtect","1","REG_DWORD" '禁止写入 wso.RegWrite "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR\Start","4","REG_DWORD" '禁用用USBStor Move "C:\" & windir & "\inf\usbstor.pnf" , "C:\" & windir & "\inf\usbstor.pnf_" Move "C:\" & windir & "\inf\usbstor.inf" , "C:\" & windir & "\inf\usbstor.inf_" Move "C:\" & windir & "\system32\drivers\usbstor.sys" , "C:\" & windir & "\system32\drivers\usbstor.sys_" If (Not Exist( "C:\" & windir & "\inf\usbstor.pnf" )) And (regKeyRead( "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR\Start" ) = 4 ) Then wso.Popup VbCrLf & "禁用 USB 存储设备成功。 ", 5, "USB 存储设备控制 - 操作完成", 64+4096 Else wso.Popup VbCrLf & "禁用 USB 存储设备失败。 ", 5, "USB 存储设备控制 - 操作完成", 16+4096 End If End if Set wso = Nothing End Sub '=========================================================================================== '小函数 Function Exist( strPath ) 'On Error Resume Next Set fso = CreateObject("Scripting.FileSystemObject") If ((fso.FolderExists( strPath )) Or (fso.FileExists( strPath ))) then Exist = True Else Exist = False End if Set fso = Nothing End Function Sub Move( strSource, strDestination ) On Error Resume Next If Exist( strSource ) Then Set fso = CreateObject("Scripting.FileSystemObject") If (fso.FileExists(strSource)) Then fso.MoveFile strSource, strDestination If (fso.FolderExists(strSource)) Then fso.MoveFolder strSource, strDestination Set fso = Nothing Else WarningInfo "警告", "找不到 " & strSource & " 文件!", 2 End If If Not Exist( strDestination ) Then WarningInfo "警告", "移动失败,无法移动 " & VbCrLf & strSource & " 至" & VbCrLf & strDestination, 2 End Sub Function regKeyRead( strKey ) Set wso = CreateObject("WScript.Shell") regKeyRead = wso.RegRead( strKey ) 'strKey = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\DocTip" Set wso = Nothing End Function '=========================================================================================== '是否重复运行 Sub CheckMeState() If IsRun( WScript.ScriptFullName ) Then Set wso = CreateObject("WScript.Shell") If wso.Popup("程序已运行,请不要重复运行本程序!" & VbCrLf & VbCrLf & _ "退出已运行程序,请按“确定”,否则请按“取消”。(3秒后自动取消)" _ , 3, "警告", 1) = 1 Then KillMeAllRun End If Set wso = Nothing 'WarningInfo "警告:", "程序已运行,请不要重复运行本程序!!", 1 WScript.Quit End If End Sub ' 检测是否重复运行 Function IsRun(appPath) IsRun=False For Each ps in GetObject("winmgmts:\\.\root\cimv2:win32_process").instances_ 'IF Lcase(ps.name)="mshta.exe" Then IF Lcase(ps.name)="wscript.exe" Then IF instr(Lcase(ps.CommandLine),Lcase(appPath)) Then i=i+1 End IF next if i>1 then IsRun=True end if End Function '终止自身 Function KillMeAllRun() Dim MeAllPid Set pid = Getobject("winmgmts:\\.").InstancesOf("Win32_Process") For Each ps In pid 'if LCase(ps.name) = LCase("mshta.exe") then IF Lcase(ps.name)="wscript.exe" Or Lcase(ps.name)="cscript.exe"Then IF instr(Lcase(ps.CommandLine),Lcase(WScript.ScriptFullName)) Then MeAllPid = MeAllPid & "/PID " & ps.ProcessID & " " end if next Set wso = CreateObject("WScript.Shell") wso.Run "TASKKILL " & MeAllPid & " /F /T", 0, False Set wso = Nothing Set pid = Nothing End Function '=========================================================================================== '检查操作系统版本 Sub CheckOS() Dim os_ver os_ver = GetSystemVersion If os_ver >= 60 Or os_ver <= 50 Then Msgbox "不支持该操作系统! ", 48+4096, "警告" WScript.Quit ' 退出程序 End If End Sub '取得操作系统版本 Function GetSystemVersion() Dim os_obj, os_version, os_version_arr Set os_obj = GetObject("winmgmts:").InstancesOf("Win32_OperatingSystem") For Each os_info In os_obj os_version = os_info.Version If os_version <> "" Then Exit For Next Set os_obj = Nothing os_version_arr = Split( os_info.Version, ".") GetSystemVersion = Cint( os_version_arr( 0 ) & os_version_arr( 1 ) ) End Function
DDR爱好者之家 Design By 杰米
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
DDR爱好者之家 Design By 杰米
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。
更新日志
2024年11月23日
2024年11月23日
- 凤飞飞《我们的主题曲》飞跃制作[正版原抓WAV+CUE]
- 刘嘉亮《亮情歌2》[WAV+CUE][1G]
- 红馆40·谭咏麟《歌者恋歌浓情30年演唱会》3CD[低速原抓WAV+CUE][1.8G]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[320K/MP3][193.25MB]
- 【轻音乐】曼托凡尼乐团《精选辑》2CD.1998[FLAC+CUE整轨]
- 邝美云《心中有爱》1989年香港DMIJP版1MTO东芝首版[WAV+CUE]
- 群星《情叹-发烧女声DSD》天籁女声发烧碟[WAV+CUE]
- 刘纬武《睡眠宝宝竖琴童谣 吉卜力工作室 白噪音安抚》[FLAC/分轨][748.03MB]
- 理想混蛋《Origin Sessions》[320K/MP3][37.47MB]
- 公馆青少年《我其实一点都不酷》[320K/MP3][78.78MB]
- 群星《情叹-发烧男声DSD》最值得珍藏的完美男声[WAV+CUE]
- 群星《国韵飘香·贵妃醉酒HQCD黑胶王》2CD[WAV]
- 卫兰《DAUGHTER》【低速原抓WAV+CUE】
- 公馆青少年《我其实一点都不酷》[FLAC/分轨][398.22MB]
- ZWEI《迟暮的花 (Explicit)》[320K/MP3][57.16MB]