Celebrating 10 Years as a Microsoft MVP!

Back from my vacation, I am thrilled to share that I have been awarded the Microsoft Most Valuable Professional (MVP) award for the 10th consecutive year. In addition to being recognized as an expert within Teams, I am have also been recognized as an expert with Microsoft Copilot. This means a lot to me.  Being an MVP has been an incredibly rewarding journey, both personally and professionally. It has provided me with countless opportunities to grow, learn, and connect with like-minded professionals who share a passion for technology and innovation.  The award is not just a title; it's a testament to the hard work, dedication, and contributions to the tech community. It's a privilege to be part of such an esteemed group of individuals who share the same love for technology, and sharing their knowledge about it.  As I reflect on the past decade, I am thankful for the experiences and knowledge I've gained. This recognition motivates me to continue sharing my expertise, mentor

Missing Meet URL in Global Topology in Lync Hosting Pack v2

For some reason, our provisioning service does not always publish the meet url in the global topology. Strictly speaking this entry is not used to populate the users meetURL, but it is needed whenever you need to deploy changes to the topology.

Missing Meet URL's in the global topology will cause an error message in Topology Builder, and prevent you from deploying anything.

In a huge deployment, finding the missing domain/meet-url mapping can take some time. That's where this short example script comes in play.

Powershell to the rescue, once again :)
$domain = Get-CsSipDomain | select identity
foreach ($d in $domain){
$TenantName = $d.identity.tostring()
$TenOrgID = (Get-CsTenant | where name -eq "$TenantName").tenantID
$TenantSIPDomain = $TenantName
$BaseMeetingURL = "https://meet.domain.com/"
$NewMeetingURL =  $BaseMeetingURL + $TenantSIPDomain
$URLEntry = New-CsSimpleUrlEntry -Url $NewMeetingURL
Write-Host "$URLEntry" -ForegroundColor darkgreen
$SimpleURL = New-CsSimpleUrl -Component "meet" -Domain $TenantSIPDomain -SimpleUrl $URLEntry -ActiveUrl $NewMeetingURL
Write-Host "$SimpleURL" -ForegroundColor yellow
Set-CsSimpleUrlConfiguration –identity global -SimpleUrl @{add=$SimpleURL} -Verbose -ErrorAction SilentlyContinue|Out-Null
}
Be aware you might have adjust the script to match your environment. And I should probably mention we've chosen to name our tenants the same as their sip addresses ;)