Step 1: Press Windows + R to open the RUN window and type Winver to check the Windows version.
Windows 10's full-application reset on PowerShell only works on Windows Version 1090 and above, older versions will not be supported.
Step 2: Then, open MenuStart, enter PowerShell and select Run as administrator to open it with Admin rights.
Step 3: Finally, you just need to copy the command below and paste it into Powershell to have them run automatically.
Get-AppxPackage *windows.immersivecontrolpanel* | Reset-AppxPackage
Similar to PowerShell, Command Prompt is also a scripter, but they are compatible with all versions of Windows because they have been released since the first days.
Step 1: Open MenuStart, enter Command Prompt and select Run as administrator to open with Admin rights
Step 2: Then, you just need to enter the command below and press Enter to run it.
PowerShell -ExecutionPolicy Unrestricted -Command "& {$manifest = (Get-AppxPackage *immersivecontrolpanel*).InstallLocation + 'AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest}"
In this article, Tipsmake showed you how to reset all apps on Windows 10. Have a nice day!