Server 2008 R2 一个小时自动强制关机

安装了win2008R2,试了很多激活方法,终于激活后,不知道什么原因,过了一段时间后,每隔一段时间就自动关机,查了一下,发现是 wlms.exe在作祟,可是这个任务一旦强制关闭,电脑又会自动重启,重启后,这个任务又在运行了。

写一个批处理文件:

taskkill /f /im wlms.exe
ping -n  4 127.0.0.1
shutdown -a

用记事本写下以上的命令,另存为.bat 批处理文件。双击运行,即可。每次开机后,都要运行一次,因为每次重新开机,wlms.exe这个服务都会运行。

taskkill /f /im wlms.exe  :这个表示关闭wlms.exe这个任务,关闭这个任务会引起windows重启。

shutdown -a :表示取消windows重启或者关闭的命令

中间这个命令ping -n  4 127.0.0.1 是为了延时,等到windows重启的命令发布了,shutdown -a才能有效的取消重启的命令。

WLMS.exe (Windows Licensing Monitoring Service) 服务是Windows软件许可状态,杀掉进程后系统会在一分钟内关机。

windows server 2008 R2 SP1 乱码

       今天装了一台服务器,系统为Server2008R2 Sp1 ,安装好之后系统显示为正常,没有出现乱码,当安装winrar软件时候,安装,下一步,开始显示为乱码,如图:

 

随后找到解决方法,进入控制面板-区域和语言-管理-更改系统区域设置-改为中文(简体,中国)重启即可。

Parser Error Message: Could not load the assembly ‘App_Web_sie24dst’. Make sure that it is compiled before accessing the page.

Server Error in ‘/’ Application.
——————————————————————————–

Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

Parser Error Message: The base class includes the field ‘ImgMap1’, but its type (controls_ImgMap) is not compatible with the type of control (ASP.controls_imgmap_ascx).

Source Error:
Line 121:    </div>
Line 122:    <div>
Line 123:      <imap:ImgMap ID=”ImgMap1″ runat=”server” />
Line 124:    </div>
Line 125:</div>
 

Source File: /index.aspx    Line: 123
——————————————————————————–
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1
Server Error in ‘/’ Application.
——————————————————————————–

Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.

Parser Error Message: Could not load the assembly ‘App_Web_sie24dst’. Make sure that it is compiled before accessing the page.

Source Error:
Line 1:               <%@ control language=”C#” autoeventwireup=”true” inherits=”controls_ImgMap, App_Web_sie24dst” %>
Line 2:  <style>
Line 3:  .DLUrl1{ background-color:#F5C733; }
 

Source File: /controls/ImgMap.ascx    Line: 1
——————————————————————————–
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1

不解释,重新发布网站,覆盖原先页面。

Server2008R2 开启无线网络

     在笔记本中安装server2008r2之后,开启无线网卡,服务也启动,但是点击右下角的网络连接图标,就是不显示无线网络信号。

      其实在server2008中,我们需要安装“无线LAN”服务才能正常使用无线网络。

“服务器管理器”-“功能”“添加功能”向下拖动下拉菜单,找到“无线LAN” 安装上即可。