いらないアプリ、いっぱいありますよね。消しましょう。
削除方法
不要アプリ削除.bat
※管理者権限で起動しましょう
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
@echo off
for %%i in (
3dbuilder
windowsalarms
windowscommunicationsapps
photos
windowscamera
soundrecorder
officehub
skypeapp
getstarted
windowsmaps
onenote
people
windowsphone
solitairecollection
zunemusic
zunevideo
xboxapp
bingfinance
bingsports
) do (
powershell -NoProfile -ExecutionPolicy Unrestricted -Command "Get-AppxPackage *%%i*" | findstr "^Name"
powershell -NoProfile -ExecutionPolicy Unrestricted -Command "Get-AppxPackage *%%i* | Remove-AppxPackage"
)
pause
|
戻し手順
全部戻す場合
powershellを管理者で開いて
1
|
Get-AppxPackage -AllUsers| Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
|
個別に戻す場合
OneNoteをインストールする
powershellを管理者で開いて
1
|
Get-AppxPackage -Name "Microsoft.Office.OneNote" -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
|
参考URL