从Windows 7 有泄漏版后,一直就在工作笔记本上使用它.但在昨天还是决定迁移回Windows XP.
主要考量为:
- VMware NAT问题,由于Windows 7 还在RC之中,VMware在它正式发布前,应该是不太会修正该问题。导致我无法运行我的虚拟测试环境。
- Windows 7的空间消耗,笔记本的空间比较有限,在Windows7下时,操作系统轻松耗去我的20G硬盘,换回Windows XP后,装了同样的软件,才消耗10G。
- 再来就是一些特定软件的兼容问题,不过这个在RC是无法避免的。
- X200的显卡驱动有问题,时不时会花屏一下。
1.设置网卡
运行:
Netsh interface ipv4 show interfaces
显示如下:
图中显示服务器只有一块网卡,网卡的索引号为2.知道了索引号就可以开始设置网卡了。
设置网卡的ip地址,掩码及网关,运行:
netsh interface ipv4 set address name=2 source=static address=192.168.42.100 mask=255.255.255.0 gateway=192.168.42.1
请将红色的部分,更换为你自己的ip地址,掩码,网关。蓝色的2就是刚才我们查询到的网卡索引号(当然你也可以使用网卡的名称"本地连接"来代替)。
接下来设置DNS服务器,运行:
netsh interface ipv4 add dnsserver name=2 address=202.101.172.46
请将红色的部分,更换为你自己的DNS服务器。
2.激活系统
运行如下命令,激活许可证:
slmgr.vbs –ato
3.修改系统名称
运行:
wmic computersystem where name="%computername%" rename name="WIN2K8SRV1"
执行该命令成功后,系统会返回 ReturnValue=0 。注意需要重新启动系统,新系统名称才会生效。
另一种方式:
netdom renamecomputer %computername% /NewName:WIN2K8SER1
4.启动自动更新
运行:
cscript c:\windows\system32\scregedit.wsf /AU 4
如果你要关闭自动更新,修改4为1即可。如果想查看当前状态,修改4为/v。
5.启动终端服务(允许远程管理连接)
运行:
cscript c:\windows\system32\scregedit.wsf /AR 0
如果你要关闭终端服务,修改0为1即可。如果想查看当前状态,修改0为/v。如果你启动终端服务后,还是无法连接到该服务器,运行如下命令看3389端口是否打开:
netsh advfirewall firewall show rule name=all|more
如果没有打开,请运行:
netsh advfirewall firewall add rule name="TS Admin" protocol=TCP
dir=in localport=3389 action=allow
今天在Vmware下安装了Windows 7 Build 6801的版本,整体上来看和Vista的区别不是太大。
安装环境:VMware Workstation 6.0.4,分配1GB内存,16GB虚拟IDE硬盘。(Windows 7 无法识别到VMware的虚拟SCSI硬盘)。安装过程及截图见内文(内有大量图片)。
第一部分
第二部分
Paul Thurrott’s SuperSite for Windows贴出了新的界面截图,转一部分过来。总体来说界面上和Vista的区别不是很大。没有看到大的提升用户使用方便性的改进。
该补丁修正了Windows Server服务在处理RPC请求时的漏洞,该漏洞属于“紧急”级别。远程攻击者可以利用该漏洞远程入侵并完全控制系统。请立即更新该补丁!
该漏洞基本影响主流微软操作系统,包含:Microsoft Windows 2000, Windows XP, Windows Server 2003, Windows Vista,Windows Server 2008.
漏洞信息相关链接:
US-CERT Vulnerability Note: VU#827267
XF win-server-rpc-code-execution(46040)
FRSIRT ADV-2008-2902
SECUNIA 32326
CVE-2008-4250
Microsoft Knowledge Base Article 958644
英文系统下载补丁链接:
Microsoft Windows 2000 Service Pack 4
Windows XP Service Pack 2
Windows XP Service Pack 3
Windows XP Professional x64 Edition
Windows XP Professional x64 Edition Service Pack 2
Windows Server 2003 Service Pack 1
Windows Server 2003 Service Pack 2
Windows Server 2003 x64 Edition
Windows Server 2003 x64 Edition Service Pack 2
Windows Server 2003 with SP1 for Itanium-based Systems
Windows Server 2003 with SP2 for Itanium-based Systems
Windows Vista and Windows Vista Service Pack 1
Windows Vista x64 Edition and Windows Vista x64 Edition Service Pack 1
Windows Server 2008 for 32-bit Systems
Windows Server 2008 for x64-based Systems
Windows Server 2008 for Itanium-based Systems
注:根据你的操作系统版本点击相应的链接下载。
如果你的系统是中文的直接看下面部分:
Windows XP 安全更新程序 (KB958644)
Windows 2000 安全更新程序 (KB958644)
Windows Server 2003 安全更新程序 (KB958644)
XBMC之前是Linux下最流行的媒体中心软件,也是我们用来搭建基于HTPC的家庭媒体中心时的推荐软件。
9月18日,他发布了第一个多平台支持的版本,Atlantis Beta1,开始全面支持Windows,MAC OS X,Linux及Xbox。 我们有多了平台选择的空间。


最新评论