What happened?
- A bug happened!
Import all Call Queues Power Automate has an error because the
"Get-CSCallQueue -name" command in the Export-CallQueues function give back more than 1 result if the CQ names similar like "Helpdesk", "IT Helpdesk"
- I fixed it in my version on the following way:
in the foreach ($CQName in $CallQueues) loop
Added:
$cqs=@()
and added all others command to one more foreach loop :
foreach ($cq in $cqs) { }
What is the version of the App?
V0.1
What were the steps you followed?
- Start the Power Automate : Import all call queues
Area in which the issue occurred
Call Queues
Relevant log output
No response
What happened?
Import all Call Queues Power Automate has an error because the
"Get-CSCallQueue -name" command in the Export-CallQueues function give back more than 1 result if the CQ names similar like "Helpdesk", "IT Helpdesk"
in the foreach ($CQName in $CallQueues) loop
Added:
$cqs=@()
and added all others command to one more foreach loop :
foreach ($cq in $cqs) { }
What is the version of the App?
V0.1
What were the steps you followed?
Area in which the issue occurred
Call Queues
Relevant log output
No response