windows 11 pro iso文件在哪下载最新版?如何下载原装纯净版win11 ? 持续更新!
1.从设置中卸载microsoft teams
microsft团队有两个组成部分,值得注意的是第二个组成部分。实际上,microsoft在他们的中提到了这一点,大多数用户不会阅读或无法独立查找。
第一个组件是teams应用本身,第二个组件是大多数用户忽略的“ teams machine-wide installer”。该应用程序的作用是查找teams应用程序,如果找不到,请重新安装。再次,这很奇怪,但这就是事实。
这是完全的正确命令。
步骤1:按windows键 i在windows 10计算机上打开“设置”,然后转到“应用程序”>“应用程序和功能”。在搜索中搜索团队。
第2步:点击应用名称,然后选择“卸载”按钮。
您将必须重复相同的步骤来卸载“ teams machine-wide installer”应用程序。
这里是您应该注意的一些有趣的观点。
- 即使您不想卸载office,也会卸载teams应用程序。然后,您必须通过来分别重新安装teams 。这是独立版本。
- 如果您曾经从控制面板修复office应用程序,它将重新安装teams应用程序,因为根据office的说法,它应该是套件的一部分。因为不再是这种情况,所以需要纠正。
这将使我们进入下一部分。作为microsoft 365计划的一部分安装的office应用程序套件。microsoft似乎正在为每个用户安装teams应用程序,这意味着您必须为每个用户卸载它。重复上述步骤,但已为每个用户(包括访客个人资料)创建了自己。完成此操作之前,请勿重新启动计算机。否则,将重新安装teams,您必须从头开始。
microsoft提供了一个,您可以在powershell中运行该以卸载teams应用程序。这里是:
<# .synopsis this script uninstalls the teams app and removes the teams directory for a user. .description use this script to remove and clear the teams app from a computer. run this powershell script for each user profile in which teams was installed on the computer. after you run this script for all user profiles, redeploy teams. #> $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 }
步骤如下。
步骤1:从“开始”菜单搜索并打开具有管理员权限的powershell。
步骤2:复制并粘贴上面的脚本,然后按enter。等待它运行。
步骤3:您现在将切换用户,然后为windows计算机上的每个用户配置文件再次运行脚本。除非已完成操作,否则请勿重新启动计算机。为每个用户运行脚本时,可以安全地重新启动。
这适用于nerdle或了解msi程序包如何工作的人。您想知道为每个用户安装teams的情况。我一直想知道相同的内容,直到在endpoint configuration manager上找到microsoft的支持文档,。
microsoft使用称为msi的东西在windows上安装和卸载大多数软件包(应用程序和软件)。用户每次登录他/她的帐户时,teams msi团队的工作方式。它将查找“团队”应用并安装一个副本(如果发现该副本自动丢失)。如前所述,它使用teams machine-wide installer进行安装。该应用程序安装在用户的appdata文件夹中,该文件夹通常默认情况下处于隐藏状态。
这就是为什么即使您刚刚卸载了teams应用程序也要反复安装的原因。尽管未在任何地方提及,但似乎“搜索并查找”脚本仅在计算机重新启动后才运行,这就是为什么我建议您在重新启动之前完成卸载过程的原因。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/yun30508.html