Modelo

  • EN
    • English
    • Español
    • Français
    • Bahasa Indonesia
    • Italiano
    • 日本語
    • 한국어
    • Português
    • ภาษาไทย
    • Pусский
    • Tiếng Việt
    • 中文 (简体)
    • 中文 (繁體)

How to Remove 3D Viewer from Windows 10 PowerShell

Oct 14, 2024

Are you tired of the 3D Viewer app on your Windows 10 computer and want to remove it using PowerShell? Look no further! In this article, we will guide you through the steps to remove the 3D Viewer from your Windows 10 system using PowerShell.

1. Open PowerShell as an Administrator

The first step is to open PowerShell with administrative privileges. To do this, right-click on the Start menu and select 'Windows PowerShell (Admin)' from the context menu.

2. Uninstall the 3D Viewer App

Once you have PowerShell open, you can start the process of uninstalling the 3D Viewer app. Enter the following command and press Enter:

Get-AppxPackage *3dviewer* | Remove-AppxPackage

This command will locate the 3D Viewer app and remove it from your system. After running the command, the 3D Viewer app will be uninstalled from your computer.

3. Verify the Uninstallation

To verify that the 3D Viewer app has been successfully uninstalled, you can use the following command:

Get-AppxPackage -Name *3dviewer*

If the app has been uninstalled successfully, this command will not return any results.

That's it! You have now successfully removed the 3D Viewer app from your Windows 10 system using PowerShell. You can now enjoy a clutter-free Windows 10 experience without the 3D Viewer app taking up unnecessary space on your computer.

Please note that removing built-in apps like the 3D Viewer using PowerShell is a permanent action, and the app cannot be easily reinstalled. So be sure that you want to remove the app before proceeding with the uninstallation process.

In conclusion, using PowerShell to remove the 3D Viewer app from your Windows 10 system is a quick and simple process. By following the steps outlined in this article, you can easily free up space on your computer and get rid of the 3D Viewer app once and for all. We hope this guide has been helpful, and thank you for reading!

Recommend