Showing results for June Blender - Scripting Blog [archived]

Aug 23, 2014
Post comments count0
Post likes count0

Weekend Scripter: PowerShell and Chocolatey

Doctor Scripto
Doctor Scripto

Summary: Guest blogger and Honorary Scripting Guy, June Blender, talks about using Windows PowerShell and Chocolatey. Microsoft Scripting Guy, Ed Wilson, is here. Today, I welcome back guest blogger, June Blender. I’m probably one of five people on earth who really do not like chocolate, so I wasn’t too keen to learn about something cal...

Scripting Guy!Windows PowerShellguest blogger
Apr 23, 2014
Post comments count0
Post likes count1

PowerTip: Convert JSON File to PowerShell Object

Doctor Scripto
Doctor Scripto

Summary: Easily convert a JSON file to a Windows PowerShell object.  How do I convert a JSON file to a Windows PowerShell object?  Use the Get-Content cmdlet with the Raw parameter: Get-Content -Raw -Path <jsonFile>.json | ConvertFrom-Json

Scripting Guy!Windows PowerShellPowerTip
Apr 23, 2014
Post comments count0
Post likes count0

JSON Is the New XML

Doctor Scripto
Doctor Scripto

Summary: June Blender provides a primer about JSON. Honorary Scripting Guy, June Blender, here. Today I'm going to introduce you to JSON. June is a writer for the Azure Active Directory SDK. She is also a frequent contributor to the Hey, Scripting Guy! Blog and for PowerShell.org. She lives in magnificent Escalante, Utah, where she works remotely w...

Scripting Guy!Windows PowerShellguest blogger
Mar 30, 2014
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Save Verbose Messages in Output File

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell to save verbose messages from a script in an output file.  How can I use Windows PowerShell to save the verbose messages from a script in an output file?  Use the redirection operator that directs verbose messages (stream #4) to a file: PS C:\> .\MyScript.ps1 -Verbose  4> VerboseMess...

Scripting Guy!Windows PowerShellPowerTip
Mar 30, 2014
Post comments count0
Post likes count0

Understanding Streams, Redirection, and Write-Host in PowerShell

Doctor Scripto
Doctor Scripto

Summary: June Blender explains how to understand and use streams in Windows PowerShell. Microsoft Scripting Guy, Ed Wilson, is here. Today guest blogger, June Blender, explains how to understand and use streams in Windows PowerShell. To read more from June, see these Hey, Scripting Guy! Blog posts. Note  Since the writing of this post, some ...

Scripting Guy!Windows PowerShellguest blogger