安装.net2005遇到的一系列问题

  这两天很郁闷,本来想给自己的机子安装一个.net2005,但是却遇到了很多的问题。现在把我遇到的问题和解决方法给写一下吧,希望能给有遇到相同问题的朋友一点帮助。安装的时候提示需要先安装windows server 2003 sp1(声明一下,我的机子是server2003的系统,D版的),于是从网上下载一个windows server 2003 sp1进行安装,安装的时候又提示说产品密钥不正确,于是又从网上下载一个产品密钥,放到自己的计算机上,可是这次安装的时候又出现新的问题了,就是在安装的时候安装到一半给提示说拒绝访问,然后点击确定,系统自动把刚才安装的windows server 2003 sp1卸载掉,然后自动重启计算机。感觉很奇怪重装了一下,还是出现这种情况。于是很郁闷,去网上找了点资料,又的朋友说需要把一个什么sql服务停止就可以了,于是停止了所有的sql服务,重装还是不行。还有人说把防火墙关掉,于是我关掉防火墙,关掉杀毒软件,重装还是不可以。这次是很的很郁闷了,最后没有办法,在安全模式下进行安装,居然可以了,安装2005,也没有问题了。但是到现在都不知道具体是什么原因。

    这里我也把修改系统密钥的方法给贴出来吧。这个方法是从别的网站上找到的,在这里粘贴一下,呵呵:

单击开始,然后单击运行。   
  在打开框中,键入   regedit,然后单击确定。   
  在左侧窗格中,找到以下注册表项,然后单击它:   
  HKEY_LOCAL_MACHINE\Software\Microsoft\WindowsNT\Current   Version\WPAEvents   
    
  在右侧窗格中,右键单击   OOBETimer,然后单击修改。   
  更改此值的至少一位,以禁用   Windows。   
  单击开始,然后单击运行。   
  在打开框中,键入以下命令,然后单击确定。   
  
%systemroot%\system32\oobe\msoobe.exe   /a   
    
  单击是,我想打电话给顾客服务代表来激活   Windows,然后单击下一步。   
  单击更改产品密钥。   
  在新密钥框中键入新产品密钥,然后单击更新。   
    
  如果返回到前一个窗口,则单击以后提醒,然后重新启动计算机。   
  重复执行第   
6   步和第   7   步以验证   Windows   是否已被激活。将出现下列消息:     
  Windows   
is   already   activated.Click   OK   to   exit.     
    
  单击确定。 

 


posted on 2007-10-31 13:24  Edwin dong  阅读(808)  评论(1编辑  收藏  举报

<% Function googleColor(value, random) Dim colorArray colorArray = Split(value, ",") googleColor = colorArray(random Mod (UBound(colorArray) + 1)) End Function Function googleScreenRes() Dim screenRes, delimiter, resArray screenRes = Request.ServerVariables("HTTP_UA_PIXELS") delimiter = "x" If IsEmpty(screenRes) Then screenRes = Request.ServerVariables("HTTP_X_UP_DEVCAP_SCREENPIXELS") delimiter = "," End If resArray = Split(screenRes, delimiter, 2) If (UBound(resArray) + 1) = 2 Then googleScreenRes = "&u_w=" & resArray(0) & "&u_h=" & resArray(1) End If End Function Function googleDcmguid() Dim dcmguid dcmguid = Request.ServerVariables("HTTP_X_DCMGUID") If Not IsEmpty(dcmguid) Then googleDcmguid = "&dcmguid=" & dcmguid End If End Function Dim googleTime, googleDt, googleScheme, googleHost googleTime = DateDiff("s", "01/01/1970 00:00:00", Now()) googleDt = (1000 * googleTime) + Round(1000 * (Timer - Int(Timer))) googleScheme = "http://" If StrComp(Request.ServerVariables("HTTPS"), "on") = 0 Then googleScheme = "https://" googleHost = Server.URLEncode(googleScheme & Request.ServerVariables("HTTP_HOST")) Dim googleAdUrl, googleAdOutput googleAdUrl = "http://pagead2.googlesyndication.com/pagead/ads?" &_ "ad_type=text_image" &_ "&channel=" &_ "&client=ca-mb-pub-6539345765131754" &_ "&dt=" & googleDt &_ "&format=mobile_single" &_ "&host=" & googleHost &_ "&ip=" & Server.URLEncode(Request.ServerVariables("REMOTE_ADDR")) &_ "&markup=xhtml" &_ "&oe=utf8" &_ "&output=xhtml" &_ "&ref=" & Server.URLEncode(Request.ServerVariables("HTTP_REFERER")) &_ "&url=" & googleHost & Server.URLEncode(Request.ServerVariables("URL")) &_ "&useragent=" & Server.URLEncode(Request.ServerVariables("HTTP_USER_AGENT")) &_ googleScreenRes() &_ googleDcmguid() Set googleAdOutput = Server.CreateObject("MSXML2.ServerXMLHTTP") googleAdOutput.Open "GET", googleAdUrl, false googleAdOutput.Send Response.Write(googleAdOutput.responseText) %>