lixiaodaoaaa 当前离线
上尉
reg add "HKEY_CLASSES_ROOT\*\shell\open\command" /v "" /d "notepad.exe %1" /t REG_SZ /f pause复制代码
reg add "HKEY_CLASSES_ROOT\*\shell\open\command" /v "" /d "notepad.exe %%1" /t REG_SZ /f pause复制代码
评分人数
tireless 当前离线
少校
C:\>reg add /? Windows 控制台注册表工具 - 版本 3.0 版权所有 (C) Microsoft Corp. 1981-2001. 保留所有权利。 REG ADD KeyName [/v ValueName | /ve] [/t Type] [/s Separator] [/d Data] [/f] KeyName [\\Machine\]FullKey 远程机器的机器名 - 忽略默认到当前机器。 远程机器上只有 HKLM 和 HKU。 FullKey ROOTKEY\SubKey ROOTKEY [ HKLM | HKCU | HKCR | HKU | HKCC ] SubKey 所选 ROOTKEY 下注册表项的完整名 /v 所选项之下要添加的值名 /ve 为注册表项添加空白值名<无名称>
TOP
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\*\shell] @="notepad" [HKEY_CLASSES_ROOT\*\shell\notepad] @="用记事本打开" [HKEY_CLASSES_ROOT\*\shell\notepad\command] @="notepad.exe \"%1\""复制代码
reg add "HKEY_CLASSES_ROOT\*\shell" /ve /d notepad /f /t REG_SZ reg add "HKEY_CLASSES_ROOT\*\shell\notepad" /ve /d 用记事本打开 /f /t REG_SZ reg add "HKEY_CLASSES_ROOT\*\shell\notepad\command" /ve /d "notepad.exe %%1" /t REG_SZ /f pause复制代码
Windows Registry Editor Version 5.00 ;@cls & start regedit /s "%~f0" & exit /b [HKEY_CLASSES_ROOT\*\shell] @="notepad" [HKEY_CLASSES_ROOT\*\shell\notepad] @="用记事本打开" [HKEY_CLASSES_ROOT\*\shell\notepad\command] @="notepad.exe \"%1\""复制代码
brim 当前离线
三级士官
reg ADD HKEY_CLASSES_ROOT\.\SHELL\OPEN\COMMAND /ve /d "notepad.exe%%1"复制代码
reg ADD HKEY_CLASSES_ROOT\.\SHELL\OPEN\COMMAND /ve /d "notepad.exe%1"复制代码