How to remove preinstalled macos software

How to remove preinstalled software from your macos when macos doesn’t allow you to?

Method 1: Using Recovery Mode

  1. Access Recovery Mode:
    • Restart your Mac.
    • As it boots up, press and hold Command + R until the Apple logo appears.
    • You’ll enter Recovery Mode.
  2. Disable System Integrity Protection (SIP):
    • In the top menu, click on “Utilities” and select “Terminal.”
    • Type the following command and press Enter:
      csrutil disable
      

    • This disables SIP, allowing you to modify system files.
  3. Reboot Your Mac:
    • Restart your Mac normally.
  4. Uninstall Preinstalled Apps:
    • Open Finder and navigate to the Applications folder.
    • Drag the unwanted preinstalled apps to the Trash.
    • Right-click the Trash icon and choose “Empty Trash.”
  5. Re-enable SIP (Optional):
    • If you want to re-enable SIP (recommended for security reasons), follow the same steps in Recovery Mode but use:
      csrutil enable
      

Method 2: Using Terminal

  1. Open Terminal:
    • Go to Applications > Utilities > Terminal.
  2. Remove Apps Using Terminal:
    • Type the following command (replace AppName with the actual app name):
      sudo rm -rf /Applications/AppName.app
      

    • Drag and drop the app from Finder into the Terminal window (this enters the app’s path).
    • Press Enter.
    • You’ll be prompted to enter your admin password. Type it and press Enter.
  3. Verify Removal:
    • The app should be removed from your system.

Remember to replace AppName with the actual name of the preinstalled app you want to remove. Be cautious when using Terminal, as it allows direct system modifications. Always double-check the app name and path before executing commands.

Feel free to ask if you need further assistance! 😊