diff --git a/Get-TeamsStatus.ps1 b/Get-TeamsStatus.ps1 index f792558..0758051 100644 --- a/Get-TeamsStatus.ps1 +++ b/Get-TeamsStatus.ps1 @@ -31,6 +31,7 @@ $HAUrl = "" # Example: https://yourha.duckdns.org $lgAvailable = "Available" $lgBusy = "Busy" $lgAway = "Away" +$lgBeRightBack = "Be right back" $lgDoNotDisturb = "Do not disturb" $lgInAMeeting = "In a meeting" $lgOffline = "Offline" @@ -103,6 +104,11 @@ If ($null -ne $TeamsProcess) { $Status = $lgAway Write-Host $Status } + ElseIf ($TeamsStatus -like "*Setting the taskbar overlay icon - $lgBeRightBack*" -or ` + $TeamsStatus -like "*StatusIndicatorStateService: Added BeRightBack*") { + $Status = $lgBeRightBack + Write-Host $Status + } ElseIf ($TeamsStatus -like "*Setting the taskbar overlay icon - Do not disturb *" -or ` $TeamsStatus -like "*StatusIndicatorStateService: Added DoNotDisturb*" -or ` $TeamsStatus -like "*Setting the taskbar overlay icon - Focusing*" -or `