目前正在研究 Windows 7 的部署选项。我们正在研究的问题之一是 32 位与 64 位。我正在尝试针对我们的资产运行 SCCM 报告,以确定哪些机器支持 64 位(无论它们当前是否运行 64 位操作系统)。
网上似乎有一些资源可以解决这个问题(这里、这里和这里),但它们似乎都不能在运行 32 位 Windows XP 的机器上正常工作。32 位 XP 机器似乎总是报告它们在 32 位硬件上运行。
我当前正在运行的查询是:
select sys.netbios_name0, sys.Operating_System_Name_and0 as OperatingSystem,
case when pr.addresswidth0=64 then '64bit OS'
when pr.addresswidth0=32 then '32bit OS'
end as [Operating System Type],
case when pr.DataWidth0=64 then '64bit Processor'
when pr.DataWidth0=32 then '32bit Processor'
end as [Processor Type],
case when pr.addresswidth0=32 and pr.DataWidth0=64 then 'YES'
end as [32-bit OS on x64 processor]
from v_r_system sys
join v_gs_processor pr on sys.resourceid=pr.resourceid
我也试过这个,它报告所有“Windows XP Professional”系统都在“基于X86的PC”上,而不是基于x64的,尽管其中一些肯定是:
select
OS.Caption0,
CS.SystemType0,
Count(*)
from
dbo.v_GS_COMPUTER_SYSTEM CS Left Outer Join dbo.v_GS_OPERATING_SYSTEM OS on CS.ResourceID = OS.ResourceId
Group by
OS.Caption0,
CS.SystemType0
Order by
OS.Caption0,
CS.SystemType0
例如,我们有一套戴尔 Latitude E4200 笔记本电脑。其中一些运行 32 位 Windows XP SP3,其中一些运行 32 位 Windows 7,一些运行 64 位 Windows 7。所有笔记本电脑都是相同的,来自相同的订单。其中,Windows 7(32 位和 64 位)报告硬件支持 64 位,而 Windows XP 机器报告它们仅支持 32 位。
有谁知道我是否可以查询另一个值以在 XP 上正确获取硬件的功能,或者是否有一个修补程序可以让它报告正确的信息?