可以快速方便的通过 VMware 提供的 Converter 工具将物理服务器转换为虚拟服务器,可是用户在做完转换之后会发现虚拟机上仍然存在大量的原先物理服务器上的和特定硬件或驱动程序相关的程序,比如你使用 HP 的服务器,肯定也会通过 SmartStart 光盘安装 HP System Tools 和 HP Management Agents,如果你通过 HP Network Configuration Utility 工具做了网卡绑定(Network Team),你会发现 P2V 之后的虚拟机上同样存在 Team 的网卡。 如何快速的卸载或者删除系统上存在的 HP Agents and Utilities 呢? 两种方法: 一,使用 Simon Seagrave 提供的脚本 脚本如下下载地址 – HPSupportPackRemove 下载保存为 bat 后缀的文件即可。 另外,如果原先的服务器使用的是比较新的 DL380G5 或者是刀片服务器,可能会使用 2.5 寸的 SAS 硬盘,需要在这个脚本中添加下面这一句,用于删除”HP Smart Array SAS/SATA Event Notification [...]
Continue reading about How to Remove HP Agents and Utilities After P2V or Convert
You can use the tools provided by the specific HBA card vendor to get the WWN of an HBA card, for example, you can use SANSurfer for QLogic cards and HBAAnywhere for Emulex cards. (There is another easy way to get the WWN of any HBA card vendor, just install NetApp Host Utilities and run [...]
今天我的笔记本上的 IE7 总是 Crash,解决方法: iexplore.exe -extoff 之后卸载不必要的 IE add-ons。
参考:http://www.petri.co.il/working_with_group_policy.htm 在每月 NT 补丁升级的时候偶尔会发现某些服务器没有接收到补丁的问题,下面简要的描述一下处理思路和过程。 先查看机器的组策略设置 相关命令有:gpresult、gpupdate、rsop.msc 等。 关于组策略优先级: Child OU GPO > OU GPO > Domain GPO > Site GPO > Local Policy 中途遇到不出现右下角补丁安装提示图标的处理方法: 用 gpresult 查看是否拿到策略 如果拿到,用 wuauclt /detectnow 去拿补丁 如果无响应,重启机器上的 automatic update 服务再运行 wuauclt /detectnow 也可以利用 wuauclt /demoui 命令调出提示的图标。 由于 Windows 2000 不支持 gpupdate 命令,使用另外一个命令: 针对 computer settings Secedit /refreshpolicy machine_policy 针对 user [...]
1. 如何快速获取当前机器上的已经更新的补丁列表? 运行 systeminfo 命令 2. 快速获取需要安装的补丁文件 运行 wuauclt.exe /detectnow 或 wuauclt.exe /resetauthorization /detectnow 可以结合 gpresult 和 gpupdate 命令使用。 3. wuauclt 命令还支持哪些参数? WSUS 2.0 支持的参数: /detectnow /resetauthorization /detectnow /RunHandlerComServer /RunStoreAsComServer /ShowSettingsDialog /ResetEulas /DemoUI 这个狂好 /FastCountdown /FakeData /FakeReboot /SkipEulas WSUS 3.0 支持的参数: /DetectNow – Causes the client to communicate to the server, report to come in [...]
Use this Windows Powershell script to retrieve information about the current domain. Copy and paste the following script (between the lines) into Notepad, making sure to have Word Wrap disabled, then save it with a .ps1 extension. ==================== $strComputer = "." $colItems = get-wmiobject -class "Win32_NTDomain" -namespace "root\CIMV2" `-computername $strComputer foreach ($objItem in $colItems) {write-host [...]
Microsoft Windows Server 2008 Beta 3 出来了,不过其对硬件的要求并没有想象中的那么高。下面表格的内容摘自微软: http://www.microsoft.com/windowsserver2008/sysreqs.mspx Component Requirement Processor Minimum: 1GHzRecommended: 2GHzOptimal: 3GHz or faster Note: An Intel Itanium 2 processor is required for Windows Server 2008 for Itanium-based Systems Memory Minimum: 512MB RAMRecommended: 1GB RAMOptimal: 2GB RAM (Full installation) or 1GB RAM (Server Core installation) or moreMaximum (32-bit systems): 4GB (Standard) or [...]
Continue reading about Windows Server 2008 System Requirements