Creating Reports in HTML

System Summary Reports

The following command creates a report in HTML containing a general summary of the system as well as high level hardware inventory information and stores the result in a file called report.html:

mcsysinfo --encode html --class general,hardware --output report.html

This command is similar to the last, but the data is in a column format instead of the default tree format:

mcsysinfo --encode html --class general,hardware --output report.html --format columns

Software Inventory Reports
If you wish to create a report of Software installed on the system, run this command:

mcsysinfo --encode html --class software --output report.html

If you wish to include details about each software product and package, run this command:

mcsysinfo --encode html --class software --output report.html --msglevel all

If you really want to know everything about each software package, including a listing of each file belonging to each package then run this command (it may take a while to run):

mcsysinfo --encode html --class software --output report.html +swfiles

Complete System Reports
A full HTML summary report of your system can be performed using this command:

mcsysinfo --encode html --class all --output report.html

A full HTML detailed report (including details such as disk partitioning) of your system can be performed using this command:

mcsysinfo --encode html --class all --output report.html --msglevel all