Forum Discussion
bhough
Aug 26, 2022Copper Contributor
Emergency Addresses Bulk Add
Is there a way to bulk add Emergency Addresses in Teams admin portal? Is there a way to bulk add Emergency Addresses in Powershell Teams CLI? Is there a way to bulk add Emergency Addresses with "pl...
- Aug 30, 2022Great to hear. And yes, the column headers in your csv need to match exactly in the script or you'll get an error for the parameter not found.
youthinkityoudoit
Aug 26, 2022Brass Contributor
Yup, sure can. Check this out https://docs.microsoft.com/en-us/MicrosoftTeams/add-change-remove-emergency-location-organization. And https://www.samanthaeasterday.com/post/enabling-emergency-calling-in-microsoft-teams
- bhoughAug 26, 2022Copper Contributor
Hello Samantha,
I do like your site...
However, I don't see the "bulk" adding emergency addresses.
Each of our Campus buildings will be a Civic Address, and we are doing dynamic emergency and have ports to the "place"(our room number).
180 buildings needs uploaded.
I'm attempting to a bulk Set_CsOnlineLisLocation with no luck. Note: I am brand new to Powershell and Teams.
Thanks for your help,
Brad
- youthinkityoudoitAug 26, 2022Brass Contributor
Hey Brad, you'll want to use New-CsOnlineLisLocation. For example:
New-CsOnlineLisLocation -CivicAddressId b39ff77d-db51-4ce5-8d50-9e9c778e1617 -Location "Office 101, 1st Floor"
You'll want to run Get-CsOnlineCivicAddress to get the civic address ID you want to associate it to.
But you'll want to create a csv file with the headers of the parameters above for all your locations. And then run a command similar to
Import-CSV C:\subnets.csv | foreach {New-CsOnlineLisLocation -CivicAddressID $_.ID –Location $_.Location- schu42Apr 12, 2023Copper Contributor
youthinkityoudoit - how do you get the ID number before creating the address?