Windows has encountered a critical problem and will restart automatically in one minute. Please save your work now
Windows has encountered a critical problem and will restart automatically in one minute. Please save your work now'
当错误对话框“Windows has encountered a critical problem and will restart automatically in one minute. Please save your work now”反复出现导致机器重启时,先打开eventviewer查看系统日志,如果发现以下错误:
http://support.microsoft.com/kb/2732595 一台基于 Windows Server 2008 R2 的或基于 Windows 7 的计算机在运行时在高的 Kerberos 身份验证负载下,Lsass.exe 进程崩溃,并且将生成错误代码 255。因此,计算机意外重新启动。此外,系统日志中记录以下事件: 记录名称: 系统 来源: 出现 LsaSrv 事件 ID: 5000 级别: 错误 关键字: 用户: 系统 说明: Kerberos 安全程序包生成异常。异常信息是数据。
记录名称: 系统 来源: USER32 事件 ID: 1074年 级别: 信息 关键词: 经典 用户: 系统 说明: 过程 wininit.exe 有 < 计算机名 > 的计算机重新启动代表用户启动,原因如下: 找不到这个原因的无标题 原因代码: 0x50006 电源关闭类型: 重新启动 注释: 系统流程 'C:\Windows\system32\lsass.exe' 意外终止,状态码为 255。现在,系统将关闭并重新启动。
记录名称: 系统 来源: 应用程序错误 事件 ID: 1000年 级别: 错误 关键词: 经典 说明: 错误的应用程序名称: lsass.exe、 版本: 6.1.7601.17725,时间戳: 0x4ec483fc 错误模块名称: ntdll.dll、 版本: 6.1.7601.17725,时间戳: 0x4ec4aa8e 异常代码: 0xc0000005 错误偏移: 0x000000000000c17b 错误的进程 id: 0x294 错误应用程序启动时间: 0x01cd1a0f91a3c151 错误的应用程序路径: C:\Windows\system32\lsass.exe 错误模块路径: C:\Windows\SYSTEM32\ntdll.dll
解决办法: 申请一下补丁装上即可 位置:(http://hotfixv4.microsoft.com/Windows%207/Windows%20Server2008%20R2%20SP1/sp2/Fix405595/7600/free/450814_intl_x64_zip.exe)
Windows has encountered a critical problem and will restart automatically in one minute. Please save your work now的更多相关文章
- windows 下 Mutex和Critical Section 区别和使用
Mutex和Critical Section都是主要用于限制多线程(Multithread)对全局或共享的变量.对象或内存空间的访问.下面是其主要的异同点(不同的地方用黑色表示). Mutex Cri ...
- SharePoint:WebPartPageUserException This page has encountered a critical error
遇到如下webpart莫名错误,很常见吧.一般用户是直接删掉,知道原因的不算太多. 解决办法(Solution): Usually, This error caused by wrong entrie ...
- windows消息机制详解(转载)
消息,就是指Windows发出的一个通知,告诉应用程序某个事情发生了.例如,单击鼠标.改变窗口尺寸.按下键盘上的一个键都会使Windows发送一个消息给应用程序.消息本身是作为一个记录传递给应用程序的 ...
- Windows Sockets Error Codes
https://msdn.microsoft.com/en-us/library/windows/desktop/ms740668(v=vs.85).aspx Most Windows Sockets ...
- [转]Installing SharePoint 2013 on Windows Server 2012 R2
转自:http://www.avivroth.com/2013/07/09/installing-sharepoint-2013-on-windows-server-2012-r2-preview/ ...
- Solution to “VirtualBox can't operate in VMX root mode” error in Windows 7
I was trying out various virtualization solutions on Windows 7, including Microsoft Virtual PC and V ...
- the service mysql56 was not found in the Windows services的解决办法
mysql无法启动,无法改变状态-CSDN论坛-CSDN.NET-中国最大的IT技术社区 http://bbs.csdn.net/topics/390943788 具体描述: 关闭,重启mysql ...
- Installing Ubuntu on a Pre-Installed Windows 8 (64-bit) System (UEFI Supported)
http://askubuntu.com/questions/221835/installing-ubuntu-on-a-pre-installed-windows-8-64-bit-system-u ...
- Microsoft Corporation 去掉 windows 修改 启动加载 版权
windows 修改 开机界面 boot启动界面 windows 修改 启动加载 版权 windows 系统如何修改开机画面的版权文字“Microsoft Corporation ... ◎Micro ...
随机推荐
- Redis性能监控
参考地址: redis教程:http://www.runoob.com/redis/redis-tutorial.html redis百度百科:https://baike.baidu.com/item ...
- python添加新的模块
添加新的模块可以把路径放到环境变量中 或者放到site-packages文件夹下
- Linux基础命令---文本过滤coi
col 过滤掉影响阅读的控制字符,使用重定向符把说明手册的内容输出到文本文件时,控制字符就成乱码.col指令可以过滤掉控制字符,使文本可读.col从标砖输入读取内容,输出到标准输出.col在读取字符时 ...
- reids非关系性数据库
1.Redis环境配置 下载安装地址: https://github.com/MicrosoftArchive/redis/releases 解压文件到指定的目录,D:\ChromeCoreDown ...
- 全球最大的3D数据集公开了!标记好的10800张全景图
Middlebury数据集 http://vision.middlebury.edu/stereo/data/ KITTI数据集简介与使用 https://blog.csdn.net/solomon1 ...
- OpenGL读取帧缓存数据
https://blog.csdn.net/niu2212035673/article/details/80251949 简述有些时候我们可能需要获取渲染后的图像数据,比较常用的函数是glReadPi ...
- scrapy selenium 登陆zhihu
# -*- coding: utf-8 -*- # 导入依赖包 import scrapy from selenium import webdriver import time import json ...
- django创建app、在视图函数及url中使用参数、url命名、通过redirect实现网页路径跳转
app用来实现一个独立的功能,视图一般都写在app的view.py中,并且视图的第一个参数永远是request,视图的返回值必须是HttpResponseBase对象或子类的对象. 创建一个app:f ...
- Springboot项目修改html后不需要重启---springboot项目的热部署
一.spring-boot-devtools 在pom中直接引入依赖 <dependency> <groupId>org.springframework.boot</gr ...
- golang BDD testcase framework.
BDD What is Behaviour Driven Development and why should I care? Behaviour Driven Development (BDD) i ...