📜  批处理脚本-注册表

📅  最后修改于: 2020-11-22 17:53:09             🧑  作者: Mango


注册表是Windows系统上的关键元素之一。它包含有关操作系统各个方面的大量信息。 Windows系统上安装的几乎所有应用程序都以某种形式与注册表交互。

注册表包含两个基本元素:键和值。注册表项是类似于文件夹的容器对象。注册表值是类似于文件的非容器对象。键可以包含值或其他键。键使用类似于Windows路径名的语法引用,使用反斜杠指示层次结构级别。

本章介绍各种功能,例如查询值,从注册表中添加,删除和编辑值。

S.No Types of Registry & Description
1 Reading from the Registry

Reading from the registry is done via the REG QUERY command.

2 Adding to the Registry

Adding to the registry is done via the REG ADD command.

3 Deleting from the Registry

Deleting from the registry is done via the REG DEL command.

4 Copying Registry Keys

Copying from the registry is done via the REG COPY command.

5 Comparing Registry Keys

Comparing registry keys is done via the REG COMPARE command.