如何在较新的 Windows 笔记本电脑上禁用或卸载“您的电脑内置 Alexa”弹出窗口?

如何在较新的 Windows 笔记本电脑上禁用或卸载“您的电脑内置 Alexa”弹出窗口?

我们最近购买了两台笔记本电脑,每次启动电脑时都会弹出这样的窗口:

我在设置的“应用程序和功能”部分找到了“Alexa”,然后单击了“卸载” - 但重新启动后,窗口仍然弹出。

我们如何才能永久禁用它?

答案1

leeharvey1的 评论

A)以管理员身份启动 PowerShell 并运行以下命令:

Windows 10:

Get-AppxPackage -AllUsers | where Name -Like *Alexa* | Remove-AppxPackage
Get-AppxProvisionedPackage –online | where DisplayName -Like *Alexa* | Remove-AppxProvisionedPackage -online #Removes it from default profile

Win11:(添加-AllUsers删除-AppxPackage

Get-AppxPackage -AllUsers | where Name -Like *Alexa* | Remove-AppxPackage -AllUsers

B)或者,正常启动 PowerShell(非管理员)

Get-AppxPackage | where Name -Like *Alexa* | Remove-AppxPackage

--

此外,您可能希望启动任务管理器并查看启动选项卡 - 您可能会发现一些意外的程序被设置为自动启动。理想情况下,您会卸载它们,但通常可以从那里禁用它们。

答案2

在 Windows 11 中测试。

做这个:

开始 / 设置 / 应用 / 启动

关闭“AlexaBuilt-in”

相关内容