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, ∼2510🔥, 0💬
Popular Posts:
Can I remove startup application "ifrmewrk.exe - Intel Wireless Framework" to speedup my computer an...
What is "Google Update Service (gupdate)" in my Windows 7 service list? And how is "Google Update Se...
How to make my presentation beautiful by applying a built-in theme provided by Office PowerPoint 200...
What is the installed program "Update for (KB2504637)" on my Windows 7 computer? "Update for (KB2504...
What files are stored in the "C:\Users\<userid >\AppData\LocalLo w"folder? Can I delete...