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

推荐订阅源

T
Tor Project blog
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 【当耐特】
G
Google Developers Blog
J
Java Code Geeks
The Cloudflare Blog
Attack and Defense Labs
Attack and Defense Labs
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
Cisco Talos Blog
Cisco Talos Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
I
Intezer
Jina AI
Jina AI
T
Tenable Blog
P
Palo Alto Networks Blog
Project Zero
Project Zero
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
The Hacker News
The Hacker News
F
Full Disclosure
Cloudbric
Cloudbric
量子位
H
Heimdal Security Blog
K
Kaspersky official blog
有赞技术团队
有赞技术团队
罗磊的独立博客
V
Vulnerabilities – Threatpost
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
阮一峰的网络日志
阮一峰的网络日志
Vercel News
Vercel News
Recent Announcements
Recent Announcements
WordPress大学
WordPress大学
GbyAI
GbyAI
S
SegmentFault 最新的问题
M
MIT News - Artificial intelligence
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
Recorded Future
Recorded Future
Security Archives - TechRepublic
Security Archives - TechRepublic
AI
AI
Webroot Blog
Webroot Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
The Exploit Database - CXSecurity.com
Apple Machine Learning Research
Apple Machine Learning Research
C
Cybersecurity and Infrastructure Security Agency CISA
H
Hacker News: Front Page
Latest news
Latest news

博客园 - 大智弱驴

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命令调用注册表修改,呵呵