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, ∼3175🔥, 0💬
Popular Posts:
What are the commonly used background processes on Windows systems? A background process is a progra...
Can I disable Windows service "Infrared Monitor" to speedup my computer? Windows service "Infrared M...
How to use .htaccess file with Apache server on Window systems? Assuming that you have installed the...
How to add a network user on a Windows 10 Pro computer? The network user already exists on the compa...
What is smss.exe process - Windows NT Session Manager? Process smss.exe is part of Windows system. I...