|
|
|
@ -31,6 +31,7 @@ $HAUrl = "<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 `
|
|
|
|
|