Showing posts with label Teams. Show all posts
Showing posts with label Teams. Show all posts

Friday, 9 June 2023

Enhancing Video Conferencing Experience with Microsoft Teams Avatars

In the fast-paced world of remote work and virtual meetings, video conferencing fatigue has become a common challenge. Microsoft Teams, a popular collaboration platform, has recognized this issue and responded with avatars. By introducing avatars as an alternative to turning on the camera during meetings, Microsoft Teams aims to provide users with more flexibility, increased comfort, and an added layer of choice.

One of the aspects of Microsoft Teams avatars is their ability to express emotions. Your avatar can convey a range of reactions during meetings, such as laughter, applause, and smiles. This feature adds a touch of personalization and engagement to the virtual meeting experience, making it feel more interactive and dynamic. By utilizing expressive avatars, participants can maintain a sense of connection and non-verbal communication even without turning on their video.

Getting started with avatars in Microsoft Teams is a quick and simple. install the Avatars app from the left side of Teams, and you're ready to dive in. Once you have the app up and running, you can unleash your creativity and customize your avatar across various categories like Body, Face, Hair, Appearance, and Wardrobe. It's like creating your own digital alter ego, reflecting your unique style and personality.

Ready to step into the spotlight without actually showing your face? Joining a meeting with your avatar is a seamless process. During a Teams meeting, just click on the More button at the top of the meeting window, the "Avatars and Effects" option is there. With a single click, you can switch from your camera to your avatar and enjoy the freedom of being video-free. It's perfect for those moments when you need a break or simply prefer a more relaxed vibe.

Let's talk about why avatars are not just a gimmick but actually bring benefits to the table. First and foremost, they alleviate video conferencing fatigue. No more worrying about how you look on camera or being conscious of your background – simply let your avatar take the stage. Avatars also offer a sense of privacy and anonymity, allowing you to feel more at ease during meetings. Plus, the expressive nature of avatars adds a playful and interactive element to the virtual space, making meetings a whole lot more enjoyable.

Microsoft Teams avatars are a game-changer for virtual meetings. They provide users with the flexibility to express themselves, personalize their virtual presence, and escape the burden of constant video visibility. By bringing a sense of fun and comfort to the meeting experience, avatars enhance engagement and communication. So, why not give avatars a try in your next Teams meeting and enjoy the benefits they bring?

Microsoft also offer admins control over this feature, in case its not a good fit for your company
Set up avatars for Microsoft Teams - Microsoft Teams | Microsoft Learn

Joining a meeting and creating you avatar
Join a meeting as an avatar in Teams - Microsoft Support

Saturday, 11 March 2023

PowerShell Script: Uninstall Microsoft Teams from a workstation

This script will uninstall Microsoft Teams from a workstation, it will also work while running under a different user, in case you need to role it out via a RMM solution but would work as a Group policy too

# Check if script is running with administrative privileges
if (-not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) {
    Write-Host "This script must be run with administrative privileges."
    Exit 1001
}

# Uninstall Microsoft Teams for all users
$teams_installed = Get-ChildItem -Path "C:\Users\*\AppData\Local\Microsoft\Teams\Update.exe" -ErrorAction SilentlyContinue

if ($teams_installed) {
    # Loop through all instances of Microsoft Teams and uninstall it silently
    foreach ($teams in $teams_installed) {
        Start-Process "$($teams.FullName)" -ArgumentList "-uninstall -s" -Wait
    }
    Write-Host "Microsoft Teams has been uninstalled for all users."
} else {
    Write-Host "Microsoft Teams is not installed on this computer."
}

# Uninstall Teams machine-wide installer
$teamswide_installed = Get-WmiObject -Class Win32_Product | Where-Object {$_.Name -like "*Teams Machine-Wide*"} | Select-Object -ExpandProperty IdentifyingNumber

if ($teamswide_installed) {
    # Uninstall the Teams machine-wide installer silently
    Start-Process "msiexec.exe" -ArgumentList "/x $teamswide_installed /qn" -Wait
    Write-Host "Teams machine-wide installer has been uninstalled."
} else {
    Write-Host "Teams machine-wide installer is not installed on this computer."
}

Friday, 13 November 2020

Microsoft Support and Recovery Assistant

 

Microsoft Support and recovery assistant is a nice tool to help with Office applications, Microsoft 365, and Outlook issues.

Its a nice first step if you are having an issue with a device or an account.

https://support.microsoft.com/en-us/office/about-the-microsoft-support-and-recovery-assistant-e90bb691-c2a7-4697-a94f-88836856c72f

Tuesday, 4 August 2020

Teams Error Code: 80070003

If you get this error code 80070003 just after the user logs in, the fix is the delete the following folder after shutting teams down 

%appdata%\Microsoft Teams
%appdata%\Microsoft\Teams

We tried reinstalling Teams and the issue persisted until we delete them folders and then it works fine. 

Tuesday, 14 July 2020

Uninstall Microsoft Teams via command line

Run

%LocalAppData%\Microsoft\Teams\Update.exe" --uninstall -s

Also will need to delete the following folders

%appdata%\Microsoft Teams
%appdata%\Microsoft\Teams

Also side note
Make sure that "Teams Machine-Wide Installer" is uninstalled too, as it will just fight the script removing it.