Inventory Solution or IT Management Suite does not currently offer a complete Windows 11 readiness report that can be used to identify computers that are available to be upgraded to Windows 11.
This was originally created by a third party not affiliated with Broadcom. The original script is located at the following URL: Windows 11 Readiness with Symantec Client Management Suite
NOTE: It's important to note that this custom inventory script is not supported by Broadcom support.
The first step is to create a new custom data class:
Go to Settings > Discovery and Inventory > Inventory Solution > Manage Custom Data Classes and click the New data class button
Name the new data class: Win11_Hardware_Readiness
Click on Add attribute and add the following attributes, one at a time, in the following order:
Save the changes and COPY the GUID from the top as shown in the following screenshot
Download the attached Windows11Readiness.ps1 script and open it to edit
Find the comment #Replace with GUID of Custom Dataclass and replace the GUID with the GUID that you copied in the last section:
Save your changes
Create a new script task in your console, with the script option PowerShell.
You will most likely have to create a new client task job, which will include the option to Disable PowerShell Signing Policy and then Enable PowerShell Signing Policy once completed. Similar to what is shown in the following screenshot:
Once the script has completed executing on endpoints, you can use your own SQL query to report on the data. One example would be the following:
select vc.Name, vc.[OS Name], hr.*, cs.Manufacturer, cs.Model
from vcomputer vc
join Inv_Win11_Hardware_Readiness hr on hr._ResourceGuid = vc.Guid
join vHWComputerSystem cs on cs._ResourceGuid = vc.Guid