[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[注册表类] [已解决]求助批处理修改注册表使用fifa online2手柄

1.“开始”--“运行”--“REGEDIT”
2.找到 HKEY_LOCAL_MACHINE /S y s t e m/ CurrentControlSet / Control / MediaProperties / PrivateProperties / Joystick / OEM /
3.修改OEMName的内容,改成“BETOP USB GAMEPAD”

我想请大家帮我写个批处理,每次都要自己去改,很麻烦,如果有个批处理,就方便多了,感谢了yj

[ 本帖最后由 hxj7728804 于 2009-5-19 20:04 编辑 ]
1

评分人数

    • Batcher: 感谢主动给标题标注[已解决]字样PB + 2

  1. @reg delete "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\MediaProperties\PrivateProperties\Joystick\OEM" /v OEMName /f > nul 2>nul
  2. @reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\MediaProperties\PrivateProperties\Joystick\OEM" /v OEMName /t REG_SZ  /d "BETOP USB GAMEPAD" /f > nul 2>nul
复制代码


如果鍵值需要雙引號,就這樣
  1. @reg delete "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\MediaProperties\PrivateProperties\Joystick\OEM" /v OEMName /f > nul
  2. @reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\MediaProperties\PrivateProperties\Joystick\OEM" /v OEMName /t REG_SZ  /d "\"BETOP USB GAMEPAD"\" /f > nul
复制代码

[ 本帖最后由 sniperhgy 于 2009-5-19 14:45 编辑 ]

TOP

批处理如何修改注册表的指定键值?

怎么批处理把HKEY_LOCAL_MACHINE \System\CurrentControlSet\Control\MediaProperties\PrivateProperties\Joystick\OEM\VID_045E&PID_01EA下OEMName的数据改成BETOP USB GAMEPAD

TOP

參考我的解答,試一下自行修改,實在不行,你再求助

TOP

原帖由 sniperhgy 于 2009-5-19 15:40 发表
參考我的解答,試一下自行修改,實在不行,你再求助

赞同。。。。

TOP

能不能把OEM下面的 比方说VID_045E&PID_01ED的OEMName的数据改成BETOP USB GAMEPAD
谢谢了哈,急用

TOP

  1. @reg delete "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\MediaProperties\PrivateProperties\Joystick\OEM\VID_045E&PID_01ED" /v OEMName /f > nul 2>nul
  2. @reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\MediaProperties\PrivateProperties\Joystick\OEM\VID_045E&PID_01ED" /v OEMName /t REG_SZ  /d "BETOP USB GAMEPAD" /f > nul 2>nul
复制代码

TOP

非常感谢,问题已经解决了,再次感谢好心人

TOP

客氣了,不過要說一聲,改一下標題,這是壇友應該具備的素質

TOP

返回列表