is it possible to do the following but without using pipe?
Get-ItemProperty HKLM:SoftwareMicrosoftWindowsCurrentVersionUninstall* | select-object DisplayName, Publisher, InstallDate
I tried ¬
$i = Get-ItemProperty HKLM:SoftwareMicrosoftWindowsCurrentVersionUninstall* $i.Displayname.Publisher.InstallDate
would love to know because I don’t like using pipe for some strange reason I can’t figure out
submitted by /u/500Rads
[link] [comments]
The post Alternative to Pipe? appeared first on How to Code .NET.