- Aug
- 2,039
- 82
Code:
_x64: 1
_admin: 1
_elevated: 1
TCC 25.00.11 x64 Windows 10 [Version 10.0.18362.239]
OS Name: Microsoft Windows 10 Pro
OS Version: 10.0.18362 N/A Build 18362
The Microsoft FindStr command allows me to do multiple searches for text at once;
Code:
e:\utils>systeminfo | findstr /B /C:"OS Name" /C:"OS Version"
OS Name: Microsoft Windows 10 Pro
OS Version: 10.0.18362 N/A Build 18362
Is this possible using either FFind or TPipe? I have tried the following;
Code:
e:\utils>systeminfo | ffind /kvm /t"OS Name" /t"OS Version"
OS Version: 10.0.18362 N/A Build 18362
BIOS Version: Dell Inc. A18, 2018-11-14
e:\utils>systeminfo | tpipe /grep=3,0,0,0,0,0,0,0,"OS Name" /grep=3,0,0,0,0,0,0,0,"OS Version"
...but did not get the desired results.
Joe