Comments on: Deploying the Microsoft Teams Desktop Client https://practical365.com/deploying-microsoft-teams-desktop-client/ Practical Office 365 News, Tips, and Tutorials Mon, 12 Sep 2022 00:26:58 +0000 hourly 1 https://wordpress.org/?v=6.3.2 By: Anton Leslie https://practical365.com/deploying-microsoft-teams-desktop-client/#comment-242870 Mon, 12 Sep 2022 00:26:58 +0000 https://www.practical365.com/?p=37634#comment-242870 I have Teams on my Laptop when I tried to down load Microsoft 365; the down load failed.
Now when I log into Teams I get two Teams icons.
One icon flashes the message installing & loading, it’s successful.
Second icon says: download failed, down, downloading & installation failed.
How can I get rid of the SECOND icon.

]]>
By: majel https://practical365.com/deploying-microsoft-teams-desktop-client/#comment-235600 Mon, 21 Jun 2021 12:54:46 +0000 https://www.practical365.com/?p=37634#comment-235600 i using this ps1 for uninstall … (uninstall teams and remove his folder)

$TeamsPath = [System.IO.Path]::Combine($env:LOCALAPPDATA, ‘Microsoft’, ‘Teams’)
$TeamsUpdateExePath = [System.IO.Path]::Combine($env:LOCALAPPDATA, ‘Microsoft’, ‘Teams’, ‘Update.exe’)

try
{
if ([System.IO.File]::Exists($TeamsUpdateExePath)) {
Write-Host “Uninstalling Teams process”

# Uninstall app
$proc = Start-Process $TeamsUpdateExePath “-uninstall -s” -PassThru
$proc.WaitForExit()
}
Write-Host “Deleting Teams directory”
Remove-Item –path $TeamsPath -recurse
}
catch
{
Write-Output “Uninstall failed with exception $_.exception.message”
exit /b 1
}

]]>
By: pushpa mamilla sayappagari https://practical365.com/deploying-microsoft-teams-desktop-client/#comment-232634 Tue, 15 Dec 2020 21:28:46 +0000 https://www.practical365.com/?p=37634#comment-232634 In reply to Josh.

this worked for me. Thanks a ton.

]]>
By: Alexander https://practical365.com/deploying-microsoft-teams-desktop-client/#comment-232345 Tue, 24 Nov 2020 13:29:36 +0000 https://www.practical365.com/?p=37634#comment-232345 In reply to Dash.

This is probably because you have an active AppLocker policy. You need to allow Teams application to run from the user profile.
Putting this here in case someone else runs in to this problem.

]]>
By: Dash https://practical365.com/deploying-microsoft-teams-desktop-client/#comment-230511 Mon, 03 Aug 2020 15:50:05 +0000 https://www.practical365.com/?p=37634#comment-230511 Hi Paul

I am getting error “Installation has failed: Failed to extract installer” when the user login.

Please help me to resolve this issue.

Many thanks.

Regards
Dash

]]>
By: sankarasubramanian parameswaran https://practical365.com/deploying-microsoft-teams-desktop-client/#comment-230412 Fri, 24 Jul 2020 11:09:33 +0000 https://www.practical365.com/?p=37634#comment-230412 we are not able to give control and reported error your hardware acceleration disabled …any suggestions

]]>
By: Josh https://practical365.com/deploying-microsoft-teams-desktop-client/#comment-229707 Fri, 29 May 2020 22:16:14 +0000 https://www.practical365.com/?p=37634#comment-229707 All you have to do is move the teams folder copy/paste to: %ProgramFiles(x86)%

then run %ProgramFiles(x86)%\Teams\current\teams.exe

go in the registry to: under your current admin user and go to:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run

look for the string value: com.squirrel.Teams.Teams

It should have this: “C:\Program Files (x86)\Teams\Update.exe –processStart “Teams.exe” –process-start-args “–system-initiated”

copy the string Name and value or just remember it.

export the key to make a backup in case you do forget it.

delete the string from current user.

then go to: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run

and add the same string value.

right click -> new string name: com.squirrel.Teams.Teams

Value data should be: C:\Program Files (x86)\Teams\Update.exe –processStart “Teams.exe” –process-start-args “–system-initiated”

add that and exit out and see if it works.

]]>
By: Josh https://practical365.com/deploying-microsoft-teams-desktop-client/#comment-229706 Fri, 29 May 2020 22:15:01 +0000 https://www.practical365.com/?p=37634#comment-229706 All you have to do is move the teams folder copy/paste to: %ProgramFiles(x86)%

then run %ProgramFiles(x86)%\Teams\current\teams.exe

go in the registry to: under your current admin user and go to:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run

look for the string value: com.squirrel.Teams.Teams

It should have this: “C:\Program Files (x86)\Teams\Update.exe –processStart “Teams.exe” –process-start-args “–system-initiated”

copy the string Name and value or just remember it.

export the key to make a backup in case you do forget it.

delete the string from current user.

then go to: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run

and add the same string value.

right click -> new string name: com.squirrel.Teams.Teams

Value data should be: C:\Program Files (x86)\Teams\Update.exe –processStart “Teams.exe” –process-start-args “–system-initiated”

add that and exit out and see if it works.

]]>
By: Arjan Kop https://practical365.com/deploying-microsoft-teams-desktop-client/#comment-229418 Thu, 30 Apr 2020 15:38:31 +0000 https://www.practical365.com/?p=37634#comment-229418 In reply to Paul Cunningham.

It does. I use the PS-script, and it nicely installs teams for a test user. All seems to work (after having to tweak app-locker a dozen times), except for the placement of a shortcut on the user’s desktop. Thank you very much for the time and trouble you took to write this post.

]]>
By: Kat https://practical365.com/deploying-microsoft-teams-desktop-client/#comment-229277 Fri, 17 Apr 2020 09:40:21 +0000 https://www.practical365.com/?p=37634#comment-229277 In reply to Chris Steenkamp.

Did you ever come up with a solution to “Register chat app” as an admin for certain users?

]]>