
Introduction
Amazon Firestick devices regularly receive OTA (Over-The-Air) updates from Amazon. These updates often introduce new features, security improvements, and bug fixes. However, some users prefer to disable automatic updates to maintain device stability, avoid interface changes, or prevent compatibility issues with their preferred applications.
In this guide, you’ll learn how to disable OTA updates on Amazon Firestick using ADB commands, what OTA updates are, and how to re-enable updates if needed.
What Are OTA Updates?
OTA (Over-The-Air) updates are software updates automatically delivered by Amazon to Fire TV devices through the internet.
These updates can include:
- Fire OS upgrades
- Security patches
- Bug fixes
- New features
- Interface changes
- Performance improvements
While updates are generally beneficial, some advanced users choose to disable them to maintain a specific Fire OS version.
Why Disable OTA Updates?
Some Firestick users disable updates for the following reasons:
Maintain a Stable Setup
Software updates can occasionally introduce unexpected changes.
Prevent Interface Changes
Amazon frequently updates the Fire TV interface and menus.
Preserve App Compatibility
Certain applications may work better on specific Fire OS versions.
Avoid Automatic Downloads
Updates can consume bandwidth and storage space.
Requirements Before You Begin
Before disabling OTA updates, you’ll need:
- Amazon Firestick
- A computer with ADB installed
- Firestick connected to the same network
- Developer Options enabled
Step 1: Enable Developer Options
On your Firestick:
- Open Settings
- Select My Fire TV
- Open About
- Highlight your Fire TV device name
- Press the Select button 7 times
- Developer Options will appear
Enable:
- ADB Debugging
- Apps from Unknown Sources (if available)
Step 2: Find Your Firestick IP Address
Navigate to:
Settings → Network
Select your connected Wi-Fi network and note the IP address.
Example:
192.168.1.100
Step 3: Connect to Firestick Using ADB
Open Command Prompt or Terminal on your computer:
adb connect 192.168.1.100:5555
Replace the IP address with your Firestick’s actual IP.
If successful, you’ll see:
connected to 192.168.1.100:5555
Step 4: Disable Amazon OTA Update Services
Run the following commands:
adb shell pm disable-user --user 0 com.amazon.device.software.ota
Next:
adb shell pm disable-user --user 0 com.amazon.device.software.ota.override
These commands disable Amazon’s OTA update services for the primary user profile.
Step 5: Verify OTA Services Are Disabled
You can verify disabled packages using:
adb shell pm list packages -d
If successful, the OTA packages should appear in the disabled package list.
How to Re-Enable OTA Updates
If you decide to receive updates again, use:
adb shell pm enable com.amazon.device.software.ota
And:
adb shell pm enable com.amazon.device.software.ota.override
After re-enabling, restart your Firestick.
Common Errors and Solutions
Package Not Found
Some Fire OS versions use different package names.
If you receive:
package not found
Try listing installed packages:
adb shell pm list packages | grep ota
ADB Connection Failed
Check:
- Firestick and computer are on the same network
- ADB Debugging is enabled
- IP address is correct
Command Not Recognized
Ensure ADB is properly installed on your computer.
Risks of Disabling OTA Updates
Before disabling updates, consider the following:
- Security patches may not be installed
- New Fire OS features will be unavailable
- Future compatibility issues may occur
- Some applications may require newer software versions
Disabling updates should only be performed by users who understand the potential consequences.
Frequently Asked Questions
Is It Safe to Disable OTA Updates?
The process itself is generally safe, but you may miss important security and stability updates from Amazon.
Will My Firestick Continue Working?
Yes. Disabling OTA updates does not affect normal Firestick functionality.
Can I Re-Enable Updates Later?
Yes. Simply use the enable commands shown earlier in this guide.
Do All Firestick Models Support These Commands?
Most Firestick models support ADB commands, but package names may vary depending on Fire OS version.
Final Thoughts
Disabling OTA updates on Amazon Firestick using ADB commands is a common technique used by advanced users who want greater control over their device. By disabling the OTA update packages, you can prevent automatic software installations and maintain your preferred Fire OS version.
If you ever need future updates, you can easily re-enable Amazon’s update services using the provided commands. Always weigh the benefits of stability against the importance of receiving security patches and new features.


