Showing archive results for 2018

Mar 1, 2018
Post comments count0
Post likes count0

PowerShell For Programmers: Strings, Quotes and Quirks

Kory Thacher

Welcome back everyone! This will be a short, but important entry for the guide. The difference between quote characters is something I’m asked about all the time. It is important to understand in PowerShell, but most of the time it probably won’t make a difference. TLDR: If you're just typing a value like "alg" then it doesn't matter, but i...

korytKory Thacher
Feb 28, 2018
Post comments count0
Post likes count0

PowerTip: Create new authentication keys for AzureRM Cognitive Services

Doctor Scripto

Summary: Change the keys to authenticate to Azure RM Cognitive Services, by using Windows PowerShell.   Hey, Scripting Guy! I created the keys for my Rest API. I know I can change them in the web portal, but is there a faster way of doing it through Windows PowerShell?   There absolutely is! Just use the New-AzureRMCognitiveServicesAccountKey cmdl...

Windows PowerShellPowerTipguest blogger
Feb 28, 2018
Post comments count0
Post likes count0

Windows PowerShell and the Azure Text-to-Speech Rest API (Part 1)

Doctor Scripto

Summary: You can use Windows PowerShell to authenticate to the Microsoft Cognitive Services Text-to-Speech component through the Rest API. Q: Hey, Scripting Guy! I heard about the cool Microsoft Cognitive Services, and had heard they have a REST API. Does that mean I can use PowerShell to consume them? Could you show me how to authenticate to it?...

Scripting Guy!Windows PowerShellSean Kearney
Feb 21, 2018
Post comments count0
Post likes count0

PowerTip: Use PowerShell to read an RSS feed

Doctor Scripto

Summary: “Hey, Scripting Guy!” shows you how to use Invoke-RestMethod to read a list of entries from an RSS feed.  How can I use Windows PowerShell to see the list of articles from an RSS feed?       Just use the Invoke-RestMethod and provide the full path to the link to the RSS feed. Here is an example:    Invoke-RestMethod -Uri 'https://blogs.t...

Scripting Guy!Windows PowerShellPowerTip
Feb 21, 2018
Post comments count0
Post likes count0

PowerShell and the REST API for the IT pro

Doctor Scripto

Summary: This post provides a quick introduction to what the REST API is, and how it applies to Windows PowerShell. Q: Hey, Scripting Guy! I can see there is this cool cmdlet called Invoke-RestMethod. I've been told REST API's are all around, and this allows me to consume that data. Could you give me a hand getting started? —SH A: Hello SH, Glad ...

Scripting Guy!Windows PowerShellSean Kearney