請問一下
透過 PowerShell 下達 Get-AppxPackage -AllUsers | Remove-AppxPackage
會將Windows內建所存在的APP進行移除,但這樣會將一些必要用到的也移除掉
(如:小算盤、記事本、便利貼、截圖剪刀、相片、電影....等)
再透過指令將個別安裝回來
Get-AppxPackage -allusers Microsoft.ScreenSketch | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($.InstallLocation)\AppXManifest.xml"}
Get-AppxPackage -allusers windowsstore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($.InstallLocation)\AppXManifest.xml"}
Get-AppxPackage -allusers photos | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($.InstallLocation)\AppXManifest.xml"}
Get-AppxPackage -allusers sticky | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($.InstallLocation)\AppXManifest.xml"}
Get-AppxPackage -allusers calculator | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($.InstallLocation)\AppXManifest.xml"}
Get-AppxPackage -allusers zunevideo | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($.InstallLocation)\AppXManifest.xml"}
Get-AppxPackage -allusers Microsoft.WindowsNotepad | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($.InstallLocation)\AppXManifest.xml"}
Get-AppxPackage -allusers "Microsoft.Paint" | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($.InstallLocation)\AppXManifest.xml"}
但是唯一有個問題點是,資料夾的畫面不一樣。 (如下圖)
]
這是尚未執行移除指令前的樣子
(下方是執行完指令之後的樣子)
但是我一直找不到是哪一個APP移除之後才變成這樣,請問有大神們知道嗎?