Missing Voice items
MichaelLaMontagne opened this issue · 3 comments
MichaelLaMontagne commented
CsCallingLineIdentity
CsOnlineLisCivicAddress
CsOnlineLisLocation
CsOnlineLisPort
CsOnlineLisSubnet
CsOnlineLisWirelessAccessPoint
csTeamsUnassignedNumberTreatment
MichaelLaMontagne commented
Adding the below works, but doesn't work with the "Number of Items".
Get-Command "Get-CSonlinelis" | ForEach-Object {
$policy = $_.Name -replace "Get-CS", ""
Backup-Configuration -Type $policy
}
Get-Command "Get-CScalling*" | ForEach-Object {
$policy = $_.Name -replace "Get-CS", ""
Backup-Configuration -Type $policy
}
Get-Command "Get-CS*UnassignedNumber*" | ForEach-Object {
$policy = $_.Name -replace "Get-CS", ""
Backup-Configuration -Type $policy
}
leeford commented
Hey @MichaelLaMontagne - totally missed this. Let me take a look 👍
leeford commented
I've updated the script to include these items and count all items correctly. Thanks @MichaelLaMontagne