Why is “

Although I’m not entirely sure that this question belongs on Stack Overflow, have you looked at the PS Cmdlet for Get-Content? Look how it’s used in the examples on TechNet in Using the Get-Content Cmdlet.

Example:

Get-Content c:\scripts\test.txt | Foreach-Object {Get-Wmiobject -computername $_ win32_bios}

Update: Above link to TechNet is broken, but mentioned in comment by Chad Miller Scripting Guy’s post Working Around Legacy Redirection Issues with PowerShell gives three options: –use CMD /c, Echo, and Get-Content.

Leave a Comment