Showing tag results for Scripting Guy!

May 9, 2018
Post comments count3
Post likes count0

Get certificate info into a CSV by using PowerShell

Doctor Scripto

Summary: Certificate management is always challenging. Let’s explore how to use PowerShell to export local certificate information to a comma-separated values (CSV) file on Windows 7 (or later) computers. Q: Hey, Scripting Guy! How can I get all my certificate info into a CSV on my Windows computers? —SH A: Hello SH, Patrick Mercier here, with...

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

Introducing the DscLcm utility for PowerShell

Doctor Scripto

Summary: Desired State Configuration is a great deployment tool to meet your organization’s infrastructure-as-code goals. I recently came across a situation for a project that uses the Push Service (as opposed to the Pull Service). It required me to be able to apply a new partial configuration to a node, without any knowledge of what partial config...

Scripting Guy!Windows PowerShellguest blogger
Mar 15, 2018
Post comments count0
Post likes count0

Windows PowerShell and the Text-to-Speech REST API (Part 2)

Doctor Scripto

Summary: You can use Windows PowerShell to authenticate to the Text-to-Speech REST API. Q: Hey, Scripting Guy! I was reading up on the REST API for the Text-to-Speech component of Cognitive Services. I'm just starting to learn how to use REST and PowerShell. Could you spend a little bit of time and show me how to authenticate to the service? —SH...

Scripting Guy!Windows PowerShellSean Kearney
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