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, 1789🔥, 0💬
Popular Posts:
What is Apache server? Apache server is an open-source free Web server software that runs websites. ...
Why my Windows XP generates a PIN code for Bluetooth connection? If you try to connect to a new Blue...
How much memory can I free up by disabling unnecessary Windows services? If you are buying a new com...
How to download and install JDK (Java SE Development Kit) 6? If you want to download and install JDK...
What is the "User Access Logging Service (UALSVC)" system service on Windows Server 2012? Can I disa...