Windows-10

是否可以使用 Intune 解除安裝預設的 Windows 10 應用?如果是這樣,怎麼做?

  • November 7, 2018

通過 Intune,是否可以解除安裝預設的 Windows 10 應用程序;像潘多拉、X-box 和 Candy Crush 嗎?如果是這樣,怎麼做?

我找到了這篇博文。從我的 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 應用程序,因為它只會讓我們的使用者感到困惑:

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/

引用自:https://serverfault.com/questions/896189