I am attempting to run a batch file in CMD that includes the following,
wmic csproduct
wmic cpu get name
wmic diskdrive ge
WMIC
output is in unicode. Pipe each wmic
output to more
.
> creates a new file.>> creates a new file if one does not already exist and appends to that file if it exists.
So, the cure would appear to be
wmic csproduct | more
wmic cpu get name | more
wmic diskdrive get model,size | more
ipconfig /all