Showing tag results for PowerTip

Mar 15, 2018
Post comments count0
Post likes count0

PowerTip: Build simple HTML with PowerShell

Doctor Scripto

Summary: Here’s how to use the ConvertTo-HTML cmdlet to build basic HTML content.   Hey, Scripting Guy! Occasionally I need to build basic HTML documents. I heard there was a way to do that with Windows PowerShell.   There most certainly is! Just use the ConvertTo-HTML cmdlet to save the day! For example:                           $SampleDoc=@' ...

Windows PowerShellPowerTipguest blogger
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 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
Aug 31, 2017
Post comments count0
Post likes count0

PowerTip: Remove calendar events from a mailbox

Doctor Scripto

Summary: Remove calendar events within an Exchange Online mailbox.     Is there an easy way to remove calendar events from within an Exchange Online mailbox?         Yes there is. There is a newly deployed cmdlet to Office 365 tenants: Remove-CalendarEvents. This cmdlet is currently only available in Exchange Online, but it does allow administrato...

PowerTipguest bloggerOffice 365
Feb 3, 2017
Post comments count0
Post likes count0

PowerTip: Get a list of security patches installed in the last 90 days

Doctor Scripto

Summary: Cloud and Datacenter Management MVP, Thomas Rayner, shows how to get a list of all the security patches installed in the last three months. How can I list all the security patches that I’ve installed in the last 90 days? There’s a class for that! Just use , and you can retrieve this information. Here is an example:

Windows PowerShellPowerTipguest blogger