各位帅哥:我的联想天禧1+1居然装不上WIN2000,出错信息如下. . . .

mahongxi 2001-04-03 05:24:00
由于办公需要,急需安装WIN2000可装了几次都不行,错误如下:
/////////////////
***STOP 0X0000001E (OX80000003,0X8006ta57,0X00000000,0Xffdff878)
KMODE_EXCEPTION_NOT_HANDLED
***Address 80067A57 base at 80062000,DateStamp 381f8c6e -hal.dll
if this is the first time you've seen this stop error screen restart computer,if this Screen appears again,follow these Steps:
Check to be sure you have adequate diskspace,if a drive is identified in the stop message,disable the drive kor check with the manufacturer for driver updates.try changing video adapters.
Check with your hardware vendor for any BIOS updates.Disable BIOS Memory Options such as Caching or Shadowing . If you need to use Safe mode to remove or disable Components,restart your computer ,Push F8 to select Adranced startup Option ,and then Select Safe Mode.
Refer to your Getting Started Manuae for More information on troubleshooting Stop error.
////////////
请问各位,这种情况如何处理?
具体该怎末做?
谢谢,100分一定俸上!!!
...全文
670 8 打赏 收藏 转发到动态 举报
写回复
用AI写文章
8 条回复
切换为时间正序
请发表友善的回复…
发表回复
kevinz 2001-04-11
  • 打赏
  • 举报
回复
很有可能是硬盘空间不足,或者是bios不兼容,

解决方法:换一个大一点的硬盘,升级bios

以后此类问题可以访问微软的网站:www.microsoft.com/support
查找英文资料库,stop xx关键字就可以了。
kevinz 2001-04-11
  • 打赏
  • 举报
回复
The STOP 1E message may occur after the first reboot during Windows NT or Windows 2000 Setup, or after Setup is finished. Three possible causes of the problem are:
Lack of disk space for installation.


Third-party video drivers (and the Microsoft Windows NT or Windows 2000 Win32k.sys driver).


System BIOS incompatibilities.


To resolve this issue, use the appropriate method below:
Reinstall on another hard disk when disk space is low.


Remove the third-party video driver.


Upgrade the system BIOS.
DavidZ 2001-04-11
  • 打赏
  • 举报
回复
联想天禧1+1的配置是????????
binghuodao 2001-04-10
  • 打赏
  • 举报
回复
不能用DMA66装2000
chenjiong 2001-04-10
  • 打赏
  • 举报
回复
联想天禧1+1又是什么好东西了。
aznarble 2001-04-07
  • 打赏
  • 举报
回复
可能有不兼容的硬件或BIOS。

Error Message:
KMODE_EXCEPTION_NOT_HANDLED

Explanation:
This Stop message indicates that a kernel-mode process tried to execute an incorrect or unknown processor instruction. This error handler is a default error handler that catches errors not associated with other specific error handlers.

User Action:
First, make sure that any new hardware installed is listed on the Microsoft Windows 2000 Hardware Compatibility List (HCL) on http://microsoft.com. In addition, a buggy device driver or system service might be responsible for this error. Hardware issues, such as memory conflicts and IRQ conflicts, can also generate this error. If a driver is listed by name within the Stop message, disable or remove that driver. Disable or remove any drivers or services that were recently added. If the error occurs during the startup sequence and the system partition is formatted with NTFS file system, you might be able to use Safe Mode to rename or delete the faulty driver. If the driver is used as part of the system startup process in Safe Mode, you need to start the computer by using the Recovery Console to access the file. If the problem is associated with Win32k.sys, the source of the error might be a third-party remote control program. If such software is installed, the service can be removed by starting the system using the Recovery Console and deleting the offending system service file. Check the System Log in Event Viewer for additional error messages that might help pinpoint the device or driver that is causing this Stop message. Disabling memory caching of the BIOS might also resolve the error. Also run hardware diagnostics, especially the memory scanner, supplied by the system manufacturer. For details on these procedures, see the owner抯 manual for your computer. For more troubleshooting information about this Stop message, refer to the Microsoft Knowledge Base at http://support.microsoft.com/support.
myy 2001-04-06
  • 打赏
  • 举报
回复
1.试试用norton最新版(别的好象不行)杀杀毒,可能有引导区病毒
2.安装的源文件如拷在硬盘上,建议重新拷一次,再不行就换安装光盘
经验之谈,不一定管用。
myy 2001-04-06
  • 打赏
  • 举报
回复
1.试试用norton最新版(别的好象不行)杀杀毒,可能有引导区病毒
2.安装的源文件如拷在硬盘上,建议重新拷一次,再不行就换安装光盘
经验之谈,不一定管用。
源码链接: https://pan.quark.cn/s/8ddf8a1c92f9 **libcurl用于获取大型文件**libcurl作为一个开源的C语言库,提供了一系列的API来处理与URL相关的任务,涵盖了HTTP、FTP、SMTP等多种网络协议的应用。在执行大型文件的下载操作时,libcurl展现出卓越的性能表现和高度的灵活性,能够高效地管理大文件传输过程,有效预防内存溢出及其他潜在问题。**libcurl的基础操作**libcurl的基础应用包括以下几个环节:1. **初始化**:需要借助`curl_global_init()`函数来启动libcurl的工作环境。2. **建立会话句柄**:通过`curl_easy_init()`函数创建一个会话句柄,该句柄将用于后续所有的操作流程。3. **配置选项**:运用`curl_easy_setopt()`函数来设定多种参数,例如目标URL、超时时间、重试次数以及数据写入的回调函数等。4. **执行请求**:调用`curl_easy_perform()`函数来实施下载操作。5. **释放资源**:使用`curl_easy_cleanup()`函数来释放已经占用的资源。**获取大型文件时的重要设置**1. **数据写入回调函数**:在处理大型文件下载时,通常不希望一次性将整个文件载入内存。可以配置`CURLOPT_WRITEFUNCTION`选项,指定一个回调函数来处理接收到的数据片段,这样libcurl在接收到数据时会调用该函数,使得我们可以按需将数据写入文件或缓冲区。2. **缓冲策略**:可以设定缓冲区的大小(比如,通过`CURLOPT_BUFFERSIZE`),来控制每次接收数据的数量,从而优化内存...
内容概要:本文档整合了《鬼谷子·决篇》与《三略·审权变第三》《差德行第四》三大古代智慧典籍,构建了一套“决策+形势+用人”三位一体的领导力提升体系。通过28天三合实战路径、三维诊断工具、9个实用模板及独特的“身体锚点”仪式,系统解决管理者在决策犹豫、形势误判、人岗错配等方面的痛点。全文涵盖理论溯源、方法论拆解(如三步决策法、审权变四步法、差德行四步法)、历史案例对照(范蠡 vs 项羽)以及跨资源联动建议,形成从认知到实践的完整闭环。; 适合人群:中基层管理者、创业者、职场进阶者,尤其是面临决策困境、环境适应困难或团队用人问题的人群;具备一定管理经验或自我提升意识的个体亦可受益。; 使用场景及目标:① 提升重大事项的决策质量,避免反复纠结与事后后悔;② 增强对外部环境变化的敏感度与应对能力,实现灵活调整;③ 科学评估人才德才素质,实现人岗精准匹配,减少用人失误;④ 构建个人化的决策-应变-用人标准化流程(SOP)。; 阅读建议:建议按照28天路径逐步实践,结合自测表定位短板,优先突破薄弱模块;配套工具模板需实际填写使用,配合身体锚点仪式强化行为记忆;可与“诸葛亮决策术”“立将威信术”等单品联动,全面提升领导力体系。

6,872

社区成员

发帖
与我相关
我的任务
社区描述
Windows 2016/2012/2008/2003/2000/NT
社区管理员
  • Windows Server社区
  • qishine
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧