|
回复 #1 chinaren12 的帖子
批处理:
- @echo off
- pushd "%~dp0"
- >>test.inf echo.[Version]
- >>test.inf echo.Signature = "$Chicago$"
- >>test.inf echo.
- >>test.inf echo.[Registry Keys]
- >>test.inf echo."MACHINE\SOFTWARE\test",0,"D:AI(D;CI;DCLCWPSDWDWO;;;WD)"
- >>test.inf echo.;键:HKEY_LOCAL_MACHINE\SOFTWARE\test
- secedit /configure /db test.sdb /cfg test.inf
- erase test.*
- echo.All Done.
- pause>nul
复制代码 |
|