→ 🚀Are you a Lansweeper Champion?! Join our Contributor Program Sign up here!

Community FAQ
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
aplechaty
Engaged Sweeper II
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.
1 REPLY 1
Caleb
Engaged Sweeper III
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.

Reports & Analytics

Ask about reports you're interested in and share reports you've created. Subscribe to receive daily updates of reports shared in the Community.

New to Lansweeper?

Try Lansweeper For Free

Experience Lansweeper with your own data.
Sign up now for a 14-day free trial.

Try Now