I'm try to replace the good old systeminfo and findstr with Get-ComputerInfo and Select-String
systeminfo | findstr Boot
Get-ComputerInfo | Select-String boot
but please have a look at the attachment
- there is no logic here!
I'm not talking about the fact that findstr no longer needs to distinguish between uppercase and lowercase in Get-ComputerInfo. and I need it with systeminfo
why Select-String works with systeminfo but not with Get-ComputerInfo?
how to combine these two commandos? or maybe you just can't? maybe there is no logic here?