aplechaty wrote:
Good Morning,
I was wondering if anyone has created a report that will go through and determine which systems can run Windows 10. I have several hundred windows 7 systems and i need to know if they will run Windows 10. Any assistance is greatly appreciated as I am trying to find an easier way of determining which are compatible and so on. I know the processor needs to support PAE, NX, and SSE2.
It also depends on your OEM and their support.
HP has a
list of supported hardware models, Dell has a similar
list.
Something like this report would breakdown the total unique models within Lansweeper.
Select Top 1000000 tblAssetCustom.Model As [Computer Model],
Count(tblAssetCustom.Model) As Total
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Inner Join tblComputersystem On tblAssets.AssetID = tblComputersystem.AssetID
Where tsysOS.OSname Like '%Win 7%' And tblComputersystem.Domainrole < 2 And
tblAssetCustom.State = 1
Group By tblAssetCustom.Model
Order By Total Desc,
[Computer Model]
You could then correlate the information from the report with whatever information your OEM provides regarding hardware support.