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 using PowerShell

Oct 04, 2024

If you're not a fan of the 3D Viewer app on Windows 10 and want to remove it using PowerShell, you're in the right place. Here's a step-by-step guide to help you uninstall the 3D Viewer app from your Windows 10 PC.

1. Open PowerShell: Go to the Start menu, search for 'PowerShell', and open it with administrative privileges. This is important as some commands require administrative access to execute.

2. Find the App Package Name: In the PowerShell window, type the following command and press Enter:

`Get-AppxPackage *3DBuilder*`

This will list the 3D Viewer app along with its PackageFullName. Make a note of the PackageFullName for the next step.

3. Uninstall the App: In the PowerShell window, type the following command and press Enter, replacing 'PackageFullName' with the actual PackageFullName you noted down in the previous step:

`Remove-AppxPackage -package PackageFullName`

For example:

`Remove-AppxPackage -package Microsoft.3DBuilder_10.0.7.0_x64__8wekyb3d8bbwe`

4. Verify Uninstallation: After executing the command, the 3D Viewer app should be uninstalled from your Windows 10 PC. You can verify this by searching for the app in the Start menu or App list.

That's it! You've successfully removed the 3D Viewer app from Windows 10 using PowerShell. Keep in mind that uninstalling built-in apps like 3D Viewer is different from uninstalling traditional desktop applications. If you ever wish to use the 3D Viewer app again, you can always download it from the Microsoft Store.

We hope this guide has been helpful in removing the 3D Viewer app from your Windows 10 PC. If you have any other Windows 10-related queries, feel free to explore our other articles for more tips and tricks. Happy computing!

Recommend