注册表管理工具设计与实现本科毕业设计

  • 格式:doc
  • 大小:551.00 KB
  • 文档页数:58

下载文档原格式

  / 58
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

注册表管理工具的设计与实现

摘要

由于Windows的注册表几乎包含了所有的Windows系统软硬件的配置信息和初始化信息,因此,它是Windows操作系统的核心。当用户在编辑注册表的时候,很容易破坏注册表数据,结果会导致操作系统瘫痪,所以注册表工具成为用户的一种常用的工具软件。该课题从注册表的常见编辑功能出发,进行集成化设计,为用户提供一种实用的注册表工具软件。该工具软件在VC6.0开发环境下完成了5项主要功能,即系统基本配置管理、系统安全管理、Windows XP sp2设置技巧、应用软件优化和反黑防毒。其中系统基本配置管理完成了主机名修改、修改注册用户和公司名、个性化电脑、系统优化设计管理、网络管理;系统安全管理完成了隐藏盘符、浏览缺省主页的修改及锁定、设置IE安全、拒绝匿名访问和桌面安全;Windows XP sp2设置技巧完成了系统设置、安全设置、网络设置;应用软件优化完成了NetMeeting优化设置、WinRAR优化设置、Windows Media Player优化设置;反黑防毒抵御了常见的攻击行为,即SYN Flood攻击、BackDoor攻击、WinNuke攻击。最后,通过测试,满足了用户常用需求,但是还需要进一步详细设计,才能成为一个功能强大的注册表管理工具。

关键词:注册表;键值;Windows

Design and Implementation of Management Tool for Registration

Abstract

Windows registration almost includes all configuration and initial information of software and hardware, so it is the core of windows operation system. It is very easy to destroy the registry data when user is editing registration, it even can lead system to paralysis, so the registration table tools become a kind of software tools in common use. The design of this project basing the function of the registry common edition is integrated design that is to provide a practical registry software tool. Five main functions are completed in VC6.0 development environment that are system configuration manage, system security management, and skill of setting Windows XP sp2, optimization of application software and anti-virus and anti-hacking. The system basic configuration management includes modify host, user and company names, and individuation computer, managing system optimization design, network management. System security management includes hiding drive, modifying and locking the default homepage, setting IE security, refusing to anonymous visits and setting desktop security. Skill of setting windows XP sp2 includes configuring system, configuring security, and configuring network. Optimization of

application software includes NetMeeting optimization, optimization Win RAR setting, and Windows Media Player optimization. Anti-virus and anti-hacking defend the common attack behavior such as SYN Flood attack, BackDoor attack, WinNuke attack. Finally, it satisfies the users by the test, but the further detailed design is needed, then it will become a powerful management tool of windows registration.

Keywords: Registration; Key value; Windows

目录

论文总页数:30页1 引言 (1)

1.1课题背景 (1)

1.2课题研究的意义 (1)

1.3课题研究的方法 (2)

2 理论基础 (2)

2.1Windows 2000/XP的物理文件构成 (2)

2.2五大注册表根键的概述 (4)

2.2.1 Windows NT注册表五大根键 (4)

2.2.2 Windows 2000注册表五大根键 (5)

2.2.3 Windows XP/2003注册表的五大根键 (8)

2.3Windows 2000/XP/2003注册表的五大根键解析 (11)

2.3.1 HKEY_CLASSES_ROOT根键 (11)

2.3.2 HKEY_CURRENT_USER根键 (12)

2.3.3 HKEY_USERS根键 (13)

2.3.4 HKEY_LOCAL_MACHINE根键 (18)

2.3.5 HKEY_CURRENT_CONFIG根键 (23)

3 设计方案 (23)

3.1开发技术 (23)

3.2基本设计 (24)

4 系统实现 (25)