Scripting Blog [archived]

Formerly known as the "Hey, Scripting Guy!" blog

PowerTip: Capture the output of a Linux application in PowerShell

Summary: Use the built-in features of PowerShell to obtain data produced by a Linux application. (image) Can I run a Linux application like ls and capture its output in PowerShell? (image) You certainly can!ย  Itโ€™s no different from when you normally grab output from any other command in Windows. ย ย To grab the output of the ls command, ...

Open Source PowerShell โ€“ Part 4

Summary: Install and Configure SSH for Open Source PowerShell remoting. (image) With PowerShell, up to this point, one thing that I love is the ability to connect various systems in my environment and run cmdlets on them remotely.ย  Can we do this with Open Source PowerShell? (image) ย Honorary Scripting Guy, Sean Kearney, is here today to ...

Open Source PowerShell โ€“ Part 3

Summary: Pass and return data correctly between Bash and Open Source PowerShell. (image) Could you show me some examples of actually passing and returning values between PowerShell and Bash? (image) Honorary Scripting Guy, Sean Kearney, is here today and weโ€™ll do exactly that. It isnโ€™t difficult to actually to do this either, but there...

PowerTip: Get the status code of a PowerShell script in Bash

Summary: Identify the results of a script running in Open Source PowerShell in a Bash environment. (image) Is there any way to see the results of a PowerShell script? For example, if somebody sent an โ€œExit 42โ€, could I see it in Linux? (image) All you need to do is examine the $? variable in Linux, just like any other Linux application...