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, ∼2627🔥, 0💬
Popular Posts:
What is Java Runtime Environment 1.4.2 - Download Program Files (DPF)? Java Runtime Environment 1.4....
What is causing the HTTP 403 (Forbidden) error when running PHP scripts with PHP CGI configuration? ...
If you are using a wireless router to connecting to the Internet through a DSL modem, how many IP ad...
What is tfswctrl.exe process - Sonic Drive Letter Access Component? Process tfswctrl.exe is the Driv...
How do I copy the user ratings for my files to my new computer? You can ensure that the user ratings...