Forum Discussion
Emergency Addresses Bulk Add
- 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.
- 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- youthinkityoudoitAug 30, 2022Brass Contributorbhough were you able to this figured out?