gpt4 book ai didi

registry - 使用 auturn 编写脚本

转载 作者:行者123 更新时间:2023-12-01 11:04:35 26 4
gpt4 key购买 nike

我有一个运行 .reg 文件的 VBScript(我这样做是为了让用户看不到它在运行)

Set WshShell = CreateObject("WScript.Shell")
WshShell.Run "regedit /s C:\Users\John\Desktop\OpenPorts.reg" ,1 ,True
Set WshShell = Nothing

然后运行下面的 .reg 文件

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\USBSTOR]
"Start" == dword:00000003

我能否将此过程合并到 1 个 VBScript 中,从而在不使用 .reg 文件的情况下进行更改?

最佳答案

这应该有效:

Dim WshShell
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.RegWrite "HKLM\SYSTEM\CurrentControlSet\services\USBSTOR\Start", 3, "REG_DWORD"

关于registry - 使用 auturn 编写脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25762652/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com