Sunday, July 30, 2017

▷ Windows registry key query/add/delete (레지스트리 키 조회/추가/삭제)

[ Windows registry key ]


REM
REM
REM 예) REG ADD HKLM\SOFTWARE\ComputerAssociates\eTrustAccessControl\Client\ClientType /v testname /t REG_SZ /d testvalue
REM KeyName : HKLM\SOFTWARE\ComputerAssociates\eTrustAccessControl\Client\ClientType
REM ValueName : /v testname
REM ValueType : /t REG_SZ (REG_SZ - string, REG_DWORD - number)
REM Vaue : /d testvalue
REM

1. to query registry key value
REG QUERY HKLM\SOFTWARE\ComputerAssociates\eTrustAccessControl\Client\ClientType /v testname

2. to add registry key
REG ADD HKLM\SOFTWARE\ComputerAssociates\eTrustAccessControl\Client\ClientType /v testname /t REG_SZ /d testvalue

3. to delete registry key
REG DELETE HKLM\SOFTWARE\ComputerAssociates\eTrustAccessControl\Client\ClientType /v testname /f

No comments:

Post a Comment

◈ Recent Post

▷ UITest demo with TestOne (Mobile, Keypad and Drag until found tip)

[ UITest Demo Environment ] 1. UITest Solution: TestOne 2. Description 데모 설명    How to use keypad, and to drag until found.     키패드를...

◈ Popular Posts