??

?

If you just want to see the output and not store it anywhere. You can use Out-GridView to show the output.

[pre]
Get-DhcpServerv4Scope -ComputerName entisdpwdhcp03.ent.co.ventura.ca.us | Get-DhcpServerv4Lease -ComputerName entisdpwdhcp03.ent.co.ventura.ca.us | where{$_.clientid -EQ $Mac} |Out-GridView
[/pre]

Also, take a look at the cmdlet, it can do a lot of different things that you may be interested in.

https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/out-gridview?view=powershell-5.1

pwshliquori

?