CMDINFO.EXE output to a file

  • Thread starter Thread starter Zed White
  • Start date Start date
Zed said:
Anyone know a way to have the output from SysInternals cmdinfo to a file?
Hi

You mean Psinfo.exe?

Use redirection to put the output into a file:

Psinfo.exe >c:\logs\psinfo.txt
 
Torgeir said:
Hi

You mean Psinfo.exe?

Use redirection to put the output into a file:

Psinfo.exe >c:\logs\psinfo.txt
I believe PSINFO.EXE >> C:\logs\psinfo.txt will append to an
existing file.
 
William said:
I believe PSINFO.EXE >> C:\logs\psinfo.txt will append to
an existing file.

Correct (and it will create the file if it doesn't exist).
 
Back
Top