im trying to find out which Computers in our environment can manage 64-Operating Systems. My query is following:
SELECT DISTINCT SYS.Netbios_Name0 FROM v_R_System SYS, v_GS_PROCESSOR PRO WHERE PRO.ResourceID = SYS.ResourceID AND PRO.AddressWidth0 = '64' ORDER BY SYS.Netbios_Name0
But instead of a list of all Computers with AddressWidth0=64 i get all Computers with an existing installation of a 64 Bit Operating System.
I have to say that im not really familiar with SQL. Maybe one of the Gurus out there see what i am doing wrong.
thats a nice report but it is not what im searchin for. I get a similar result as with the report you posted with my sql-query above. But i don't need a list with the Computers with 64 Bit OS installed.
If i open the Resource-Explorer and browse to the Processorproperties there is a column AdressWidth. We think about deploying win7 only in 64bit version. Thats why I need all Computers with 64 as value in that column to know how many computers need to be replaced.