How do I display both the host name and boot time? The code I'm trying:
systeminfo | find /i "host name" && "boot time"
I know I could use
systeminfo | find /i "host name"
systeminfo | find /i "boot time"
but I really don't want to.
Basically I want the command to display the host name and boot time and ignore all else. How do I do that on one line? I know I'm missing something super simple here.