Quantcast
Channel: /r/powershell – How to Code .NET
Viewing all articles
Browse latest Browse all 8793

Alternative to Pipe?

$
0
0

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.


Viewing all articles
Browse latest Browse all 8793

Trending Articles