How to Reset the Tips App to Default Settings on Windows 11/10

uninstalltips

Analysis:

The Tips app (also known as Microsoft Tips or Get Tips) is a built-in application in Windows 11 and Windows 10 that provides helpful guidance on using system features, shortcuts, and new updates. Over time, you may have customized its behavior β€” such as disabling certain tips or turning off notifications β€” and later wish to restore it to its original state.

Resetting the Tips app to default settings can help resolve issues like:

  • No tips appearing
  • App crashes or errors
  • Disabled content delivery
  • Customizations preventing normal operation

Below are professional methods to reset the Tips app on both Windows 11 and Windows 10.


βœ… Method 1: Reset the Tips App via Settings (Recommended)

This method is ideal for most users and does not require technical knowledge.

Steps:

On Windows 11:

  1. Press Win + I to open Settings.
  2. Go to Apps > Apps & Features.
  3. Scroll down and find Microsoft Tips.
  4. Click on it, then select Advanced Options.
  5. In the new window, scroll down to the Reset section.
  6. Click Reset to restore the app to its default configuration.

On Windows 10:

  1. Open Settings (Win + I).
  2. Navigate to Apps > Apps & Features.
  3. Search for Get Tips or scroll to locate it.
  4. Click on Get Tips, then choose Advanced Options.
  5. Click Reset to return the app to factory settings.

πŸ“Œ Note: This action will remove all user-specific settings and preferences but will not uninstall the app.


πŸ’» Method 2: Use PowerShell to Reset the Tips App (Advanced)

If the Settings method fails or if you’re experiencing deeper issues, PowerShell offers a more powerful way to reset the app by re-registering it with the system.

Steps:

  1. Open PowerShell as Administrator:
  • Right-click the Start menu and select Windows Terminal (Admin) or Windows PowerShell (Admin).
  1. Run the Following Command:

For Windows 11 (Microsoft Tips):

Get-AppxPackage -Name Microsoft.Windows.HolographicFirstRun | Reset-AppxPackage

For Windows 10 (Get Tips / ContentDeliveryManager):

Get-AppxPackage -Name Microsoft.Windows.ContentDeliveryManager | Reset-AppxPackage

If the command doesn’t work, ensure the package name matches exactly. You can list all installed packages using:

Get-AppxPackage | Where-Object { $_.Name -like "*Tip*" }

πŸ” Optional: Reinstall the Tips App (If Reset Fails)

If resetting doesn’t resolve the issue, you may need to unregister and re-register the app manually.

To Reinstall/Re-register:

  1. Run this command to remove the app package:
Get-AppxPackage -Name Microsoft.Windows.HolographicFirstRun | Remove-AppxPackage
  1. Then re-register it:
Add-AppxPackage -Register "C:\Program Files\WindowsApps\Microsoft.Windows.HolographicFirstRun_10.0.0.0_neutral_~_8wekyb3d8bbwe\AppXManifest.xml" -DisableDevelopmentMode

⚠️ Warning: The exact path may vary depending on your OS version and updates. You might need to enable viewing of hidden files and take ownership of the WindowsApps folder to access this directory.


🧩 Additional Notes:

  • Administrative Privileges Required: Most PowerShell commands require elevated permissions.
  • System Restore Point: Before making changes, create a restore point in case something goes wrong.
  • Check for Updates: Make sure your system is up to date to avoid compatibility issues after resetting apps.
  • No Data Loss: Resetting the Tips app does not delete personal data, as it does not store user-generated content.

βœ… Conclusion

Resetting the Tips app to default settings is a straightforward process that can help restore functionality and refresh the user experience. Whether you’re troubleshooting performance issues or simply want to start fresh, using the Settings app is the simplest solution for everyday users, while PowerShell provides advanced control for IT professionals or power users.

By following the steps outlined above, you can effectively manage and maintain the Tips app in Windows 11 or Windows 10, ensuring it continues to deliver useful insights into your operating system.

Tags:

No responses yet

Leave a Reply

Your email address will not be published. Required fields are marked *

Latest Comments
No comments to show.