Windows 10 バージョン 21H2 に既定のアプリを再インストールする方法
Windows 10 には、スタート メニュー、Cortana、Microsoft Edge ブラウザー、Xbox、Microsoft ストア、写真、ペイント 3D、one-note、skype など、多数の組み込みユニバーサル アプリが付属しています。 -windows 10 へのアップグレードのインストール中にインストールされました。最近の windows 10 のアップグレード後に、特定のアプリが見つからないことがあります。または、最新の更新プログラムをインストールした後、アプリが正しく動作しない、クラッシュする、または応答しない。または、他のいくつかのアプリでは、壊れて正しく動作しません。
そのような原因では、以下の手順に従ってアプリをリセットすることをお勧めします。
- Windows + I キーボード ショートカットを押して、設定アプリを開きます。
- アプリをクリックしてから、アプリと機能をクリックします。
- 問題のあるアプリを選択し、[詳細オプション] をクリックします
- 下にスクロールして、リセット オプションをクリックします。
- もう一度 [リセット] をクリックして、アプリをデフォルト設定にリセットします。
しかし、リセット オプションで問題が解決しない場合, または Windows 10 1903 アップグレード後にアプリが見つからない場合, Windows 10 で削除されたアプリを復元する方法は次のとおりです
デフォルトの Windows アプリを再登録する方法
Windows PowerShell でコマンド ラインを実行することにより、組み込みの Windows アプリを再インストールまたは再登録できます。ここでは、PowerShell コマンドを使用して Windows 10 コンピューターに特定の既定のアプリまたはすべての既定の組み込みアプリを再インストールする手順を説明します。
Windows 10 にすべての組み込みアプリを再インストールする
すべてのビルトイン Windows アプリを再インストールするには
<オール>Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”}
次に、現在ログインしているアカウントの Windows 10 に既定のアプリをすべてインストールしようとします。または、以下のコマンドを使用して、すべてのユーザーの Windows アプリを再登録することもできます:
Get-AppxPackage -Allusers | Foreach {Add-AppxPackage -register “$($_.InstallLocation)\appxmanifest.xml” -DisableDevelopmentMode}
既定のアプリのいずれかがコンピューターに既にインストールされている場合は、その名前が赤で表示されます。コマンドを完了した後、赤い行を単に無視してください ウィンドウを再起動して、新たなスタートを切りましょう。アプリ関連の問題が解決されていることを確認してください。
特定のビルトイン アプリを Windows 10 に再インストールする
特定の Windows アプリで問題が発生し、他のアプリが正常に動作している場合は、上記のコマンドを実行してすべてのアプリを再登録/再インストールする必要はありません。特定の Windows アプリのみを再登録するには、以下のコマンドを確認してください。
- Win + X を押して選択し、PowerShell (管理者) をもう一度開きます。
- 管理者 PowerShell プロンプトで、以下のコマンドをコピーして貼り付け、Enter キーを押して同じコマンドを実行します。
- 3D ビルダー:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *3DBuilder*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- アラームと時計:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *WindowsAlarms*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- アプリ コネクタ:
PowerShell -ExecutionPolicy Unrestricted -Command "&{$manifest =(Get-AppxPackage *AppConnector*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- 電卓:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *WindowsCalculator*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- カレンダーとメール:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *windowscommunicationsapps*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- カメラ:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *WindowsCamera*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- キャンディー クラッシュ ソーダ サーガ:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *CandyCrushSodaSaga*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- つながる:
PowerShell -ExecutionPolicy Unrestricted -Command "&{$manifest =(Get-AppxPackage *PPIProjection*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- サポートへのお問い合わせ:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *ContactSupport*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- コルタナ:
PowerShell -ExecutionPolicy Unrestricted -Command "&{$manifest =(Get-AppxPackage *Windows.Cortana*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- フィードバック ハブ:
PowerShell -ExecutionPolicy Unrestricted -Command "&{$manifest =(Get-AppxPackage *WindowsFeedbackHub*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- オフィスを取得:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *MicrosoftOfficeHub*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- 始める:
PowerShell -ExecutionPolicy Unrestricted -Command "&{$manifest =(Get-AppxPackage *GetStarted*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- メールとカレンダー:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *windowscommunicationsapps*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- マップ:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *WindowsMaps*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- メッセージ:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *Messaging*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- Microsoft Edge:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *MicrosoftEdge*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- Microsoft ソリティア コレクション:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *MicrosoftSolitaireCollection*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- お金:
PowerShell -ExecutionPolicy Unrestricted -Command "&{$manifest =(Get-AppxPackage *BingFinance*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- 映画とテレビ:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *ZuneVideo*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- ニュース:
PowerShell -ExecutionPolicy Unrestricted -Command "&{$manifest =(Get-AppxPackage *BingNews*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- OneNote:
PowerShell -ExecutionPolicy Unrestricted -Command "&{$manifest =(Get-AppxPackage *Office.OneNote*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- ペイント 3D:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *MSPaint*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- 人:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *People*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- 電話:
PowerShell -ExecutionPolicy Unrestricted -Command "&{$manifest =(Get-AppxPackage *CommsPhone*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- フォン コンパニオン:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *WindowsPhone*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}」
- 写真:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *Photos*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”
- Settings:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *immersivecontrolpanel*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”
- Skype:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *SkypeApp*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”
- Sports:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *BingSports*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”
- Sticky Notes:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *MicrosoftStickyNotes*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”
- Microsoft Store:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *microsoftStore*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”
- Sway:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *Office.Sway*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”
- Twitter:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *Twitter*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”
- Voice Recorder:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *WindowsSoundRecorder*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”
- Weather:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *BingWeather*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”
- Xbox:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *XboxApp*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”
- Xbox One SmartGlass:
PowerShell -ExecutionPolicy Unrestricted -Command “&{$manifest =(Get-AppxPackage *XboxOneSmartGlass*).InstallLocation + ‘\AppxManifest.xml’; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}”
Note:windows add new apps regularly. So may the app you are getting problem not listed above then you can follow the below steps to re-register the specific app.
On Admin PowerShell type Get-AppxPackage -AllUsers | Select Name, PackageFullName そしてエンターキーを押します。 This will display available packages (for installation) on your computer. look for the App that you want to re-register (re-install) for the current user. ( for ex we want to re-install Skype app )
Here first copy the package name by select and press Ctrl + C and paste on notepad. ( for ex:Microsoft.SkypeApp_11.8.204.0_x64__kzf8qxf38zg5c ) and the perform command below.
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “C:\Program Files\WindowsApps\PackageFullName\appxmanifest.xml” -DisableDevelopmentMode
Note:Replace the package name which you copied from PowerShell. This means the command would be like bellow
Get-AppXPackage | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “C:\ProgramFiles\WindowsApps\Microsoft.SkypeApp_11.8.204.0_x64__kzf8qxf38zg5c\appxmanifest.xml” -DisableDevelopmentMode
Press enter and wait until executing the command, After that Restart windows and check the specific which you recently re-install working properly.
Reset your PC to its default settings
If the above solutions didn’t fix the problem then Reset this PC is probably a good fix that reinstalls Windows 10 without affecting your files and folder.
- Open Settings .
- Click on Update &Security .
- Click on Recovery .
- Under “Reset this PC,” click the Get Started ボタン。
Select the Keep may files オプション。 and follow on-screen instructions to reset Windows 10 Without effecting files.
Did this help to reinstall preinstalled apps for windows 10? Let us know on the comments below, also read:
- Activate Windows 10 ウォーターマークを完全に削除する方法
- Windows 10 laptop won’t wake up from sleep mode? Here how to fix it
- Fix error status 0xc000012f Bad Image Error on Windows 10
- Fix This App Has Been Blocked For Your Protection in Windows 10
- How To Update, Re-install, Roll Back Device Drivers in Windows 10
-
Windows 11 でアプリをアーカイブする方法
私たちは皆、後で忘れるためだけに使用する予定のアプリをダウンロードします。それらのアプリを使用しなくなったとしても、これらのアプリは引き続きストレージ スペースを占有し、インターネット接続を消費します。 Microsoft は、アプリケーションのアーカイブ機能を追加して、アプリケーションがそうしないようにしました。アーカイブ アプリ機能でサポートされるのは、Microsoft Store からダウンロードしたアプリのみです。 アプリのアーカイブ機能の目的は何ですか? アプリのアーカイブは、ファイルや設定を保存しながら、あまり使用しないアプリを削除できる機能です。アーカイブされたアプリを再
-
Windows 11 で不足している既定のアプリ/プログラムを復元する方法
デフォルトでは、Windows にはいくつかのプログラムが含まれています。これらは、基本的な作業を完了するための多くの便利なアプリケーションと共に Windows にプリインストールされているため、手動でインストールする必要はありません。しかし、これらの既定のプログラムが Windows デバイスにない場合はどうなるでしょうか?デフォルトのアプリが存在しないのは、いくつかの理由で発生する可能性がありますが、通常は、新しくアップグレードされたビルドの新しい OS アップデートをインストールした後に表示されます。 この問題は、古いオペレーティング システムから新しいオペレーティング システムに