Windows 2008 Server Core基本设置
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