Collections:
Other Resources:
Application Command in Pipeline in Windows PowerShell
Can I use application commands in cmdlet pipeline in Windows PowerShell?
✍: FYIcenter.com
Yes, you can use application commands in cmdlet pipeline in Windows PowerShell.
But you need to remember a couple of things:
1. The output of an application command will be considered as a String object, not a sequence of characters. For example:
PS C:\fyicenter> ping localhost | get-member -membertype property
TypeName: System.String
Name MemberType Definition
---- ---------- ----------
Length Property int Length {get;}
2. If an output object is piped into an application command, the object will be converted into a sequence of characters before feeding to the application.
⇒ Object Type Match in Pipeline in Windows PowerShell
⇐ Use Cmdlet Pipeline in Windows PowerShell
2016-11-04, ∼2750🔥, 0💬
Popular Posts:
How to review Internet Explorer (IE) add-on or Browser Helper Object (BHO) tools on Windows XP with ...
What is HPQTOA~1.EXE or HPQToaster.exe - Process - HpqToaster Module? Process HPQTOA~1.EXE or HPQToa...
What is "Net.Pipe Listener Adapter" in my Windows 7 service list? And how is "Net.Pipe Listener Adap...
What is "Portable Device Enumerator Service" in my Windows XP service list? And how is "Portable Dev...
Can I remove startup application "msmsgs.exe - Microsoft Messenger" to speedup my computer and reduc...