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 18, 2024

If you've been looking for a way to remove the 3D Viewer app from your Windows 10 computer, PowerShell provides a simple and effective solution. Here's how to do it:

Step 1: Open PowerShell

First, you'll need to open PowerShell with administrator privileges. To do this, right-click on the Start button and select 'Windows PowerShell (Admin)' from the menu.

Step 2: Uninstall the 3D Viewer app

Once PowerShell is open, you can uninstall the 3D Viewer app using the following command:

Get-AppxPackage *3dviewer* | Remove-AppxPackage

After running this command, the 3D Viewer app will be uninstalled from your Windows 10 computer.

Step 3: Confirm the removal

To confirm that the 3D Viewer app has been successfully removed from your system, you can use the following command to list all installed apps and check for the 3D Viewer:

Get-AppxPackage -AllUsers

Look for the 3D Viewer app in the list. If it's not there, then you have successfully removed it from your Windows 10 computer.

And that's it! With just a few simple commands in PowerShell, you can easily remove the 3D Viewer app from your Windows 10 computer. This can help free up space and streamline your system, especially if you don't use the 3D Viewer regularly. Give it a try and enjoy a cleaner, more customized Windows 10 experience.

Recommend