惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LINUX DO - 最新话题
T
Tor Project blog
G
GRAHAM CLULEY
S
Security Affairs
P
Palo Alto Networks Blog
TaoSecurity Blog
TaoSecurity Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
aimingoo的专栏
aimingoo的专栏
博客园_首页
C
CXSECURITY Database RSS Feed - CXSecurity.com
博客园 - 三生石上(FineUI控件)
Cloudbric
Cloudbric
Cyberwarzone
Cyberwarzone
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
C
CERT Recently Published Vulnerability Notes
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
C
Check Point Blog
宝玉的分享
宝玉的分享
Forbes - Security
Forbes - Security
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Microsoft Security Blog
Microsoft Security Blog
Schneier on Security
Schneier on Security
The Last Watchdog
The Last Watchdog
T
The Blog of Author Tim Ferriss
S
SegmentFault 最新的问题
H
Heimdal Security Blog
Recorded Future
Recorded Future
L
LangChain Blog
WordPress大学
WordPress大学
Know Your Adversary
Know Your Adversary
C
Cyber Attacks, Cyber Crime and Cyber Security
V
Visual Studio Blog
B
Blog
H
Help Net Security
T
Tailwind CSS Blog
The Hacker News
The Hacker News
雷峰网
雷峰网
P
Proofpoint News Feed
博客园 - Franky
Attack and Defense Labs
Attack and Defense Labs
有赞技术团队
有赞技术团队
S
Schneier on Security
T
Troy Hunt's Blog
云风的 BLOG
云风的 BLOG
Hacker News - Newest:
Hacker News - Newest: "LLM"
Blog — PlanetScale
Blog — PlanetScale
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
P
Proofpoint News Feed

博客园 - 大智弱驴

Windows 2008登录日志说明 在Exchange 2003的Windows 2003 AD域改名 MOM 2005 Maintenance Mode Summary(转载) 如何解决Outlook搜索问题 SCOM 2007配置数据库整理设置 SCOM 2007 Gateway 安装手册 Exchange 2007实施问题集锦 ISA Server 2004 0x80004005错误 解决rendom后客户端改名失败的问题 使用Exchange查看客户端的连接状态 使用PrintMig迁移打印机 关于Hyper-V 如何修改Windows 2008 Core的桌面分辨率 激活Windows 2008 Core 限制域中账户在不同计算机上重复登录的脚本 国际信息安全管理标准体系--BS7799 Core IO学习心得 Project中如何设置非标准工作时间 ISA Firewall服务启动报告Error Code 212994
Windows Server 2008 Core模式下简单配置命令
大智弱驴 · 2008-03-26 · via 博客园 - 大智弱驴

Windows Server 2008有一个Core安装模式,完成之后没有explorer界面,所有操作用命令和脚本完成,感觉又回到了DOS时代。(忽如一夜春风来,一夜回到旧社会^_^)

现在把常用配置命令给大家share一下:
1.用Ctrl+Shift+Esc调用任务管理器,再用CMD调出命令行窗口,所有的事情都是用这个窗口完成了
2.改用户密码用这个net user username password
3.改系统时间和区域设置用:
 Control timedate.cpl 
 Control intl.cpl
这是仅仅保留的两个控制台命令了。
4.IP 配置常用命令:
先用命令netsh interface ipv4 show interfaces检查接口,会看到两个接口,Local Area Connection的Idx为2
再用命令netsh interface ipv4 set address name=”2” source=static address=IP地址 mask= 子网掩码 gateway=网关
        netsh interface ipv4 add dnsserver name=”2” address=DNS服务器1地址 index=1 --添加第1个DNS
        netsh interface ipv4 add dnsserver name=”2” address=DNS服务器2地址 index=2 --添加第2个DNS

ipconfig /all检查一下
5. 改计算机名称:
用命令 netdom renamecomputer %computername% /newname:新名字   
系统提示确认,按Y
然后用命令shutdown /r /t 0 重启系统
然后用hostname检查新名字生效
6. 启用自动更新:
c:\windows\system32>cscript scregedit.wsf /?    查看命令参数
c:\windows\system32>cscript scregedit /AU /v   查看目前自动更新服务状态,4为启用,0为禁用
c:\windows\system32>cscript scregedit /AU 4     打开自动更新
7. 同理,启用远程桌面:
c:\windows\system32>cscript scregedit /AR 0
8. 激活服务器
c:\windows\system32>cscript slmgr.vbs –xpr   显示过期时间
c:\windows\system32>cscript slmgr.vbs –dli     显示license信息
c:\windows\system32>cscript slmgr.vbs –ato   激活服务器
9. 安装服务器组件:
检查当前安装组件用命令:oclist 可以看到默认没有安装任何组件,从这里可以记住要安装的组件名称
然后用这个命令安装:start /w ocsetup 组件名称
比如安装DNS:start /w ocsetup DNS-Server-Core-Role     (一定要注意这里的大小写!)
10. 最后,如何改桌面分辨率?答:用regedit命令调用注册表修改,呵呵