Silencing Loading Messages

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
confusedbatchfiles
Posts: 1
Joined: 02 May 2013 17:41

Silencing Loading Messages

#1 Post by confusedbatchfiles » 02 May 2013 17:47

Hi Everyone,

First time posting here.

I'm trying to figure out to write a batch file that silences the loading messages when I use the systeminfo command. I figure it must be some kind of redirection but I'm not sure how to do it.

Right now, the attempt looks like this:
C:\>systeminfo
Loading Processor Information...

Essentially, I'd like the "Loading Processor Information..." and other messages to not appear on the screen.

Any help would be very much appreciated!

foxidrive
Expert
Posts: 6031
Joined: 10 Feb 2012 02:20

Re: Silencing Loading Messages

#2 Post by foxidrive » 02 May 2013 19:09

Code: Select all

systeminfo >file.txt 2>nul

Post Reply