Registry Edit through Command Prompt

Опубликовано: 06 Май 2026
на канале: Raaga mind
30,463
210

Registry Edit through Command Prompt
Run Command Prompt run as Administrator
type command at command prompt reg /?
its show you parameters
for add value in registery
use Command
REG ADD HKLM\SOFTWARE\DEEPTECHSUPPORT\DATAPORT /v SER%VER /d DEEPAKSYSTEM /f /reg:64
PARAMETERS

SOFTWARE\DEEPTECHSUPPORT\DATAPORT is a keyname
/v means key valuename
/d means Data fo key
/f for forcely add
/reg:64 for 64 bit machine
/reg:32 for 32 bit machine

Check This value through Registry editior

at run menu Type RegEdit
not you can find value in Registry

for Delete SubKey or SubKey Value

if you required to delete subkey
REG DELETE HKLM\software\DEEPTECHSUPPORT\DATAPORT /f /reg:64

if you required to delete subkey Value
REG DELETE HKLM\software\DEEPTECHSUPPORT\DATAPORT /v SERVER /f /reg:64

for help about any option type
Reg ParameterName /?
Example REG ADD /?