It is possible to get a lot of information about the system with various built-in commands, especially DISM in Windows, and save them as a txt file on your desktop.

You can save these codes in a bat file and run them as an administrator, paste them into the command prompt you started with administrator privileges and run them.

List of Optional Features
Code:
DISM /Online /Get-Features /Format:Table > %userprofile%\desktop\Features.txt
List of Capabilities
Code:
DISM /Online /Get-Capabilities /Format:Table > %userprofile%\desktop\Capabilities.txt
List of Provisioned Application Packages
Code:
DISM /Online /Get-ProvisionedAppxPackages > %userprofile%\desktop\AppPackages.txt
List of Drivers
Code:
DISM /Online /Get-Drivers /format:Table > %userprofile%\desktop\Drivers.txt
List of Packages
Code:
DISM /Online /Get-Packages /format:Table > %userprofile%\desktop\Packages.txt
International Settings
Code:
DISM /Online /Get-Intl > %userprofile%\desktop\Intl.txt
System Information
Code:
systeminfo > %userprofile%\desktop\SystemInfo.txt
Detailed System Information
Code:
msinfo32 /report %userprofile%\desktop\MSInfo32.txt
Windows Version Information
Code:
ver >  %userprofile%\desktop\Ver.txt

I am sure that these commands have already been shared on tenforums in different titles, I just wanted to share them here collectively.