Microsoft Advertising

[ 2009/03/12 10:57 | by gOxiA ]
        从 Steve Clayton 那里看到了微软的一个广告片,特转载至此与大家分享。
<a href="http://video.msn.com/?mkt=en-US&playlist=videoByUuids:uuids:47eacd2b-25e9-4dbc-8c6f-6e38854b85c9&showPlaylist=true&from=msnvideo" target="_new" title="Microsoft Advertising Intro">Video: Microsoft Advertising Intro</a>

        在审核模式下(Auditing Installations),OEM 和企业可以在将计算机发放到最终用户前自定义 Windows 安装。在审核模式中,可以安装应用程序、添加设备驱动、配置系统以及测试系统的有效性。
        要启动到审核模式有以下几种方式:
        1. 在安装完系统后启动到“欢迎使用 Windows”屏幕中,按 Shift+Ctrl+F3 组合键,系统会自动重新进入审核模式。
        2. 配置无人参与安装应答文件,将 “Microsoft-Windows-Deployment | Reseal | Mode”设置为 audit
        3. 运行 sysprep /audit,将系统配置为下次重新启动时进入审核模式。
        注意:计算机启动到审核模式后,计算机将一直启动到审核模式,直至将计算机配置为启动到“欢迎使用 Windows”

Tags: ,

        今天一个朋友电话过来咨询我有关 Windows Server 2003 32bit 企业版最大支持的物理内存容量,主要是因为正在运营的一台数据库服务器内存使用达到 2G,服务器效率非常低打算扩展内存,为 SQL Server 提供更多的内存。

        经过确认,服务器是 HP G3 系列支持 PAE,即物理地址扩展,服务器应该最大支持 32GB,而 Windows Server 2003 32bit 企业版最大支持 32GB,为了能够在系统上有效的使用内存需要开启 /PAE 参数,而要使 SQL Server 使用 2GB 以上的内存还需要启用 AWE 内存。为此需要在 SQL Server 查询分析器中执行如下脚本:

sp_configure ‘show advanced options’,1

reconfigure

go

sp_configure ‘awe enabled’,1

reconfigure

go

sp_configure ‘max server memory’,6144

reconfigure

go

注意:如果在 boot.ini 文件中使用 /3GB 开关,SQL Server 最多可以使用 3GB 的内存。

具体信息可以参考:KB274750

        现在回过头来再了解一下 Windows Server 2003 各版本最大支持的内存容量,以及其他硬件支持信息,便于以后参考。

Windows Server 2003 R2 Standard Edition

最多 4 个处理器,最大 4GB 内存

Windows Server 2003 R2 Enterprise Edition

最多 8 个处理器,x86 架构最大 64GB 内存,x64 架构最大 2TB 内存

Windows Server 2003 R2 Datacenter Edition

x86 架构最多 32 路多处理器,最大 128GB 内存;x64 架构最多 64 路多处理器,最大 2TB 内存

Windows Server 2003 Web Edition

最大 2GB 内存

Windows Server 2003 Standard Edition

最多 4 个处理器,最大 4GB 内存

Windows Server 2003 Enterprise Edition

最多 8 个处理器,x86 架构最大 32GB 内存,x64 架构最大 64GB 内存

Windows Server 2003 Datacenter Edition

最多 64 路多处理器,x86 架构最大 128GB 内存,x64 架构最大 2TB 内存

具体信息可参考:http://technet.microsoft.com/en-us/windowsserver/bb430827.aspx

Tags: , , , , ,
分页: 265/472 第一页 上页 260 261 262 263 264 265 266 267 268 269 下页 最后页 [ 显示模式: 摘要 | 列表 ]