Im taking a simple refresher course on batch files. I need to remove the "Loading..." that appears when running systeminfo and send it to NUL. I can't remember how to redirect the Loading messages to nul. Here is the batch file I need to remove the Loading from:
REM Find all desired variables and export to .info file
systeminfo | findstr /c:"Host Name" /c:"OS Name" /c:"OS Version" /c:"BIOS Version" /c:"OS Configuration" /c:"Registered Owner" /c:"Product ID" /c:"Total Physical Memory" /c:"Original Install Date" /c:"System Manufacturer" /c:"System Model" /c:"Processor(s)" > SYS%computername%.info
REM Clear the command prompt and display the contents of previously created file
cls
type SYS%computername%.info
Basically need systeminfo to run without showing the user that Loading blah blah blah.