You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
@echo off
|
|
echo Registry Operation
|
|
echo Useage: libc get.bat "address" "keyname"
|
|
if "%1"=="" goto __error
|
|
if "%2"=="" goto __error
|
|
reg query %1 | find /i "%2" >%temp%\reg_temp
|
|
set /p return_value=<%temp%\reg_temp
|
|
|
|
|
|
|
|
|
|
:_error
|
|
echo 参数错误:(
|
|
goto end |