How to verify Packages Conversion Status in ConfigMgr
Hi Guys,
Package Conversion Manager is a built-in feature within ConfigMgr and you can convert the packages into applications. In this post, I have mentioned how to verify the process of conversion status of packages whether converted, Ready or Not ready etc and it’s defined by the below values.
0 | Unknown |
1 | NotApplicable |
2 | NotReady |
3 | Ready |
4 | Transformed |
5 | Error |
SQL Query:
Please run the below simple SQL query to list the status of packages conversion process.
Select
Name,
PkgID,
TransformReadiness
from vPackage
Result:
ConfigMgr Console:
Under Software Library -> packages node, add Readiness column to list the Package conversion status.
Under Monitoring -> Package conversion status node, it shows summary of the analysis and conversion process.
Thank you 🙂
Leave a Reply