Guide

Remove apps from a Fire TV Stick, and make it stick.

Usually the reason is a child and a feed that never ends. Almost every guide tells you to uninstall the app; we measured what happened next on a real device, and Amazon put it back within two hours. Here is the one-word change that makes it permanent, and the complete set of steps around it, written for someone who has never opened a command line.

What we measured

Uninstalling does not work.

On a Fire TV Stick 4K Max we removed the YouTube app with the usual pm uninstall command. It reported Success, and the app vanished from the home screen.

About two hours later it was back. Asking the device who installed it gave a straight answer: installerPackageName=com.amazon.venezia. The Amazon Appstore had quietly reinstalled it. Turning off "Automatic Updates" in the Appstore settings did not prevent this. That setting governs updates to apps you have; it does not stop Amazon re-pushing apps that shipped with the device.

So stop creating the gap. Instead of removing the app, disable it. The package stays on the device, so the Appstore sees nothing missing and has nothing to restore, but the app cannot launch and does not appear on your home screen. That is the method below.

Mostly, this is about kids.

A television used to be a finite thing. A programme ended, and the ending was the point: it handed the room back to you. Whatever else was wrong with it, the TV was the one screen in the house that did not scroll.

The feed apps have arrived on it. YouTube on a Fire Stick is a wall of thumbnails that autoplays the next one before the last has finished, Shorts included. The Silk browser opens the door to Instagram and everything like it. None of that was designed for a living room, and none of it was designed to be switched off.

The controls Amazon gives you do not really solve it. Parental Controls are a PIN over purchases and age ratings; they do not take an app off the home screen. Amazon Kids is a separate walled profile, which works well for a small child and not at all for a teenager who simply switches back to the main one. Either way the app is still sitting there, one click away, and a PIN is only ever as good as the number of times a child has watched you type it.

Disabling is a different kind of answer. There is no PIN to learn and no profile to leave. The app is not on the screen, and tapping where it used to be does nothing at all. It is reversible in one command whenever you decide otherwise, but until you do, it is genuinely gone.

The same steps work just as well for whatever you personally never asked for: shopping apps, promo rows, screensaver ads, the tutorial video you have already seen.

Before you start

This takes about fifteen minutes. Your computer and your Fire Stick must be on the same Wi-Fi network. Nothing here roots the stick, installs anything on it, or voids your warranty, and a factory reset undoes all of it.

1

Turn on Developer Options

Do this on the TV itself, with your Fire TV remote.

  1. From the home screen go to Settings (the gear icon) → My Fire TVAbout.
  2. Highlight the top line (the one naming your device, such as Fire TV Stick 4K Max) and press the select button (the round centre button) seven times. A small counter appears, ending with "You are now a developer."
  3. Press Back once. You are in My Fire TV again, and a new Developer Options entry has appeared.
  4. Open Developer Options and switch ADB Debugging to ON.

No Developer Options after seven presses? You were almost certainly highlighting the wrong row. It has to be the device-name row at the very top of About, not "Storage" or "Network".

2

Find your Fire Stick's IP address

Still on the TV, with the remote:

  1. Go to SettingsMy Fire TVAboutNetwork.
  2. Read the IP ADDRESS shown on the right. It looks like 192.168.1.63: four numbers separated by dots.
  3. Write it down. You will type it several times.

Everywhere you see 192.168.1.63 below, use your number instead.

3

Download the ADB tools onto your computer

ADB (the Android Debug Bridge) is a free, official tool from Google. You do not install it. You unzip it and run it out of that folder.

  1. Download platform-tools-latest-windows.zip. It saves to your Downloads folder.
  2. Open Downloads, right-click the file, choose Extract All…, then Extract.
  3. You now have a folder named platform-tools-latest-windows with another folder inside it called platform-tools. The inner one is what you want: it holds adb.exe.
4

Open a command line in that folder

This is the step most guides skip, and it is where people get stuck. The command line has to be pointed inside the platform-tools folder, or it will not find the tool.

  1. Open the platform-tools folder in File Explorer, so you can see adb.exe in the list.
  2. Click once in the address bar at the top, the strip showing the folder path. It highlights in blue.
  3. Type powershell straight over it and press Enter.

A dark window opens, already pointed at the right folder. Its last line ends with \platform-tools>. That is your command line: type a command, press Enter, read what comes back.

On Windows, type .\adb.exe (with the dot and the backslash) rather than just adb. PowerShell refuses to run a program from the current folder without it.

5

Connect to the Fire Stick

Type this with your own IP address, and press Enter:

.\adb.exe connect 192.168.1.63:5555

Now look at your TV. A box asks "Allow USB debugging?" and shows a long string of letters and numbers. Tick "Always allow from this computer" and choose OK. You have only a few seconds before it disappears.

Run the same command again to confirm:

What success looks likeconnected to 192.168.1.63:5555
If it says "unauthorized"

The prompt on the TV was not accepted, or it timed out. Run the connect command again, watch the TV, and accept it. This is by far the most common sticking point.

6

Find the app's package name

Every app has an internal name that looks like com.amazon.firetv.youtube. You need the exact one. This lists every app on your device:

.\adb.exe -s 192.168.1.63:5555 shell pm list packages

That prints a few hundred lines, nearly 300 on the stick we tested. To search it for one app, say anything with "youtube" in the name:

.\adb.exe -s 192.168.1.63:5555 shell pm list packages | Select-String youtube
Example resultpackage:com.amazon.firetv.youtube

The part after package: is what you need. These are the ones people most often want gone, all verified present on a Fire TV Stick 4K Max:

AppPackage name
YouTubecom.amazon.firetv.youtube
Netflixcom.netflix.ninja
Hulucom.hulu.plus
Silk Browsercom.amazon.cloud9
Amazon Photoscom.amazon.bueller.photos
Amazon Musiccom.amazon.bueller.music
Shop TVcom.amazon.shoptv.client
Early Access promoscom.amazon.tv.earlyaccess
"How to use your Fire TV" tutorialscom.amazon.tmm.tutorial
Screensavercom.amazon.ftv.screensaver
Ad deep-linkingcom.amazon.ftvads.deeplinking
Content recognition (identifies what is on screen)com.amazon.tv.acr
Do not disable these

Disabling com.amazon.tv.launcher takes away your home screen and leaves you with a TV you cannot navigate. Leave com.amazon.tv.settings.v2 (Settings) alone too, along with anything beginning com.android.

If a package is not in the table above and you do not know what it does, leave it. The gain from removing a mystery background service is small. The cost of removing the wrong one is a stick you have to factory reset.

7

Disable the app

This is the command that actually holds. Use your IP and the package name you found:

.\adb.exe -s 192.168.1.63:5555 shell pm disable-user --user 0 com.amazon.firetv.youtube
What success looks likePackage com.amazon.firetv.youtube new state: disabled-user

Look at your TV. The app is gone from the home screen and cannot be opened. Run the command again for each app you want rid of, changing the package name each time.

When you have finished, disconnect:

.\adb.exe disconnect
Turn ADB back off

Return to SettingsMy Fire TVDeveloper Options and switch ADB Debugging to OFF. While it is on, any computer on your network can reach the stick. Switch it back on only when you want to change something.

Changed your mind?

None of this is permanent. To bring an app back, reconnect (steps 4 and 5) and run:

adb -s 192.168.1.63:5555 shell pm enable com.amazon.firetv.youtube

Prefix it with .\ on Windows or ./ on a Mac, as before. And if anything at all goes wrong, a factory reset (SettingsMy Fire TVReset to Factory Defaults) puts every app back exactly as it shipped.

When it doesn't work

"unauthorized"

The prompt on the TV was never accepted. Run the connect command again and watch the screen as you do.

"unable to connect", or it just hangs

Usually one of four things. The Fire Stick is asleep, so press a button on the remote to wake it. The IP address has changed, because routers reassign them; check step 2 again. Your computer is on a different network, such as a separate 5GHz band or a guest network. Or your router has "AP isolation" or "client isolation" turned on, which stops devices on the same Wi-Fi from seeing each other. That one is a setting in your router, not on the stick.

The app came back anyway

Check that you used disable-user and not uninstall. Uninstalling is precisely the thing that does not survive. If you had uninstalled the app earlier, the Appstore may restore it one more time. When it does, disable that copy and it will stay disabled.

"adb is not recognised" / "command not found"

Your command line is not pointed at the platform-tools folder, or you left off the .\ or ./ in front. Go back to step 4.

The phone is the harder one.

You have just taken back the one screen the whole family shares. The harder screen is the one nobody shares: already in a pocket, upstairs, and built to be far more difficult to put down than anything on a television.

Verboten blocks the apps you choose on iPhone and iPad, at the system level, so a blocked app cannot be opened at all. No command line, no PIN to watch someone type.

See how Verboten works

Tested on a Fire TV Stick 4K Max (model AFTMA08C15) running Fire OS 8.1.8.2, in September 2026. The commands are standard Android and behave the same on other Fire TV models and Fire OS versions, but package names vary between device generations, which is why step 6 has you list the apps on your own device rather than trusting a copied list. Verboten is not affiliated with Amazon.