List all SfBS & SfBO policies by type

Here’s a “one-liner” I came up with this week that dumps ALL of the SfB policies in your system ordered by type: PS C:\> Get-Command -Module SkypeForBusiness Get-Cs*Policy | where-object {$_.Name -ne “Get-CsEffectivePolicy”} | ForEach { invoke-expression $_.name } | ft @{Label=”Policy type”; Expression={($_.getType()).ToString().Split(‘.’)[-1]}}, identity -auto This is what it looks like here in the …

Continue reading ‘List all SfBS & SfBO policies by type’ »

SfB 2015 Server Update – May 2020

It’s been a whole nine months since we saw an update for Skype for Business Server. That was CU10 HF1. This is build 6.0.9319.580, and it updated seven components on my Standard Edition Front-End. What’s Fixed? This cumulative update includes a defense in depth fix and enables Location-Based Routing to support the Skype for Business …

Continue reading ‘SfB 2015 Server Update – May 2020’ »

Migrating Gallery.TechNet to GitHub made easier

TL;DR: My “New-ObfuscatedFile.ps1” script uses a find/replace CSV file to make multiple substitutions in a text file in one pass. It can be easily repurposed to turn HTML into MarkDown. Microsoft’s Gallery.TechNet.microsoft.com site will be sorely missed when it’s closed later in the year. It’s been a fantastic repository of tools, documents and utilities, and …

Continue reading ‘Migrating Gallery.TechNet to GitHub made easier’ »

Use a UI Flow to automate web forms – Pt.2

TL;DR: Part 2: add an On-premises Data Gateway & trigger a “UI Flow” via a web hook, initiated by a “flic” smart button. In my last post I demonstrated how you can use the new “UI Automation” functionality inside Power Automate (pka Microsoft Flow) to fill out a web form. In that example I automated …

Continue reading ‘Use a UI Flow to automate web forms – Pt.2’ »