Need to delete the meeting requests made by terminated users from all the conference rooms for multiple terminated users at a time.
below is the script which i buil
I think I can actually answer this for you! My first answer (that I can remember) on stack:)
You should put the terminated users' usernames (or some other identifier) in a text file, then insert a new line below your line
$count=$rooms.count
that is
$TerminatedUsers = Get-Content .\TerminatedUsersList.txt.
Then add another line that is
foreach ($User in $TerminatedUsers) {
Then add a final closing curly brace } to the very end of your script.
Finally, change your from:sasi OR Kalai to from:$($User)
This will loop through each of the terminated users, and for each one of them, it will search all of the room mailboxes for their meetings.
I hope this makes sense for you.