Home / System Administration / systeminfo

systeminfo

Display System Configuration Information

What Does It Do?

The systeminfo command displays detailed configuration information about a computer and its operating system. It provides a comprehensive snapshot of hardware specifications, software configuration, network settings, installed hotfixes, and system uptime.

This command is invaluable for system administrators, IT support technicians, and anyone who needs to quickly gather complete system information without navigating through multiple control panel menus. It's particularly useful for troubleshooting, documentation, inventory management, and compliance auditing.

Advertisement

[ Insert Google AdSense Banner Code Here ]

When Should I Use It?

System Documentation

Create detailed records of system configurations for inventory and compliance.

Troubleshooting

Quickly gather system specs when diagnosing hardware or software issues.

Patch Verification

Check which hotfixes and updates are installed on the system.

Network Configuration

View network adapter details, IP addresses, and DHCP settings.

Common Commands

systeminfo

Display all system information in default list format.

systeminfo /fo table

Display system information in a table format (useful for quick viewing).

systeminfo /fo csv

Display system information in CSV format (useful for importing into Excel).

systeminfo > C:\system_report.txt

Save system information to a text file for documentation.

systeminfo | findstr /C:"OS Name" /C:"OS Version"

Display only operating system name and version information.

systeminfo | findstr /C:"Total Physical Memory"

Check the total amount of physical RAM installed in the system.

Pro Tip: Export to CSV for Multiple Systems

When documenting multiple computers, use CSV format and redirect to a file with the computer name:

systeminfo /fo csv > \\fileserver\inventory\%COMPUTERNAME%.csv

This creates a unique CSV file for each computer that can be easily imported into Excel or a database for centralized inventory management. You can run this command across all computers using Group Policy or a deployment script.

Try It Yourself

Practice systeminfo commands in the interactive terminal below: