Showing archive results for 2016

Dec 7, 2016
Post comments count0
Post likes count0

Make Visual Studio Code more like the integrated scripting environment

Doctor Scripto

Summary: Learn some handy tips to make Visual Studio Code work more like the ISE. I was very intrigued with the release of Visual Studio Code last year. An editor that is light-weight and integrated with Git is something worth considering. Well, any new tool that could be added to the tool box is worth considering. In the past, I used the integrat...

PowerShellJason WalkerGuestBlogger
Dec 5, 2016
Post comments count0
Post likes count0

Get started with PowerShell development in Visual Studio Code

Doctor Scripto

Summary: Learn about the features in Visual Studio Code that help you write PowerShell code. Since the PowerShell integrated scripting environment (ISE) shipped with Windows PowerShell 2.0 in 2009, the PowerShell landscape has changed significantly. In November 2014, Microsoft took .NET open source and cross-platform. Given PowerShell’s dependence...

Windows PowerShellguest bloggerVisual Studio Code
Nov 25, 2016
Post comments count0
Post likes count0

PowerTip: Capture the output of a Linux application in PowerShell

Doctor Scripto

Summary: Use the built-in features of PowerShell to obtain data produced by a Linux application. Can I run a Linux application like ls and capture its output in PowerShell? 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, for example, just assign i...

Windows PowerShellPowerTipguest blogger
Nov 25, 2016
Post comments count0
Post likes count0

Open Source PowerShell – Part 4

Doctor Scripto

Summary: Install and Configure SSH for Open Source PowerShell remoting. 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?  Honorary Scripting Guy, Sean Kearney, is here today to go over how to get Open...

Windows PowerShellguest bloggerSean Kearney
Nov 18, 2016
Post comments count0
Post likes count0

PowerTip: Return a status code to Linux from PowerShell

Doctor Scripto

Summary: Pass a result code back to a calling Linux environment from Open Source PowerShell. How can I pass a numeric value back to a calling Bash Shell to indicate an error? Just simply supply the EXIT command and a numeric value at the point where the error is flagged. For example, the following code is a PowerShell script that returns a value...

Windows PowerShellPowerTipguest blogger