Nathan Hartley Asked: 2018-02-08 13:57:48 +0800 CST2018-02-08 13:57:48 +0800 CST 2018-02-08 13:57:48 +0800 CST 是否可以使用 Intune 卸载默认的 Windows 10 应用?如果是这样,怎么做? 772 通过 Intune,是否可以卸载默认的 Windows 10 应用程序;像潘多拉、X-box 和 Candy Crush 吗?如果是这样,怎么做? windows-10 2 个回答 Voted Best Answer Michiel 2018-02-15T03:23:57+08:002018-02-15T03:23:57+08:00 我找到了这篇博文。从我的 Windows 10 设备上卸载 Eclipse 管理器对我有用。- 将您要卸载的应用添加到您的企业商店 - 将您的商店与 Intune 同步 - 在 Intune 中配置应用以卸载所有设备或用户,或基于组。 https://www.data3.com/knowledge-centre/blog/uninstall-unwanted-windows-10-applications-using-intune/ Nathan Hartley 2018-11-08T07:00:54+08:002018-11-08T07:00:54+08:00 也可以使用 Powershell 配置脚本卸载应用程序。我们这样做是为了一次性卸载,用户可以稍后重新安装。 这是一个示例,其中删除了 OneNote 应用程序(体面)和 Office 365 的 OPK 安装版本(由某些制造商安装),因为它们阻止了 Office 365 的 Intune 安装。我们还删除了 Office Hub 应用程序,因为它只会让我们的用户感到困惑: if (Test-Path 'C:\Program Files\Microsoft Office *\') { Write-Host 'No need to remove blocking apps, Office is already installed.' } else { Write-Host 'Uninstalling Apps that block the Office Installer.' $Packages = Get-AppxProvisionedPackage -Online | Where-Object { $_.DisplayName -in 'Microsoft.Office.OneNote','Microsoft.MicrosoftOfficeHub','Microsoft.Office.Desktop' } $Packages | Remove-AppProvisionedPackage -AllUsers -ErrorAction Continue } 这是 Intune Powershell 文档: https://docs.microsoft.com/en-us/intune/intune-management-extension 这是一篇精彩的博客文章,进一步解释了如何删除内置应用程序: https://www.askvg.com/guide-how-to-remove-all-built-in-apps-in-windows-10/
我找到了这篇博文。从我的 Windows 10 设备上卸载 Eclipse 管理器对我有用。- 将您要卸载的应用添加到您的企业商店 - 将您的商店与 Intune 同步 - 在 Intune 中配置应用以卸载所有设备或用户,或基于组。
https://www.data3.com/knowledge-centre/blog/uninstall-unwanted-windows-10-applications-using-intune/
也可以使用 Powershell 配置脚本卸载应用程序。我们这样做是为了一次性卸载,用户可以稍后重新安装。
这是一个示例,其中删除了 OneNote 应用程序(体面)和 Office 365 的 OPK 安装版本(由某些制造商安装),因为它们阻止了 Office 365 的 Intune 安装。我们还删除了 Office Hub 应用程序,因为它只会让我们的用户感到困惑:
这是 Intune Powershell 文档:
https://docs.microsoft.com/en-us/intune/intune-management-extension
这是一篇精彩的博客文章,进一步解释了如何删除内置应用程序:
https://www.askvg.com/guide-how-to-remove-all-built-in-apps-in-windows-10/