GSM6 - Professional Mobile Software Solutions
Abdul Malik (AM) android 17 min

Fastboot Commands to Enable & Disable Factory Mode on Google Pixel Phones


📅 Updated: June 24, 2026 | ✅ Fact-checked & verified


Learn fastboot commands to enable or disable factory mode on Google Pixel 6, 6 Pro, 6a, 7, 8, 9 series. Fix Radio OFF, No Service, and airplane mode loop issues with manual commands or one-click toolkit.

Download Google Pixel Technicians Toolkit V3


Table of Contents


🔒 PROFESSIONAL REPAIR USE ONLY

This guide is for educational and repair purposes on devices you own. Unlocking bootloader will wipe ALL data and may void warranty. The author and GSM6 assume no liability for misuse of this information. Proceed at your own risk.


Introduction

Factory Mode is a low-level diagnostic state on Google Pixel phones that can be useful for advanced repairs but often causes problems when left enabled. If your Pixel phone is stuck with No Service, Airplane mode turning on automatically, or showing “Radio OFF” error, factory mode is likely enabled on your device.

In this guide, I will show you all the fastboot commands to check, enable, and disable factory mode on Google Pixel 6, 6 Pro, 6a, 7, 7 Pro, 7a, 8, 8 Pro, 8a, 9, 9 Pro, and 9 Pro XL series. If you find manual commands confusing, I also show you a one-click alternative using the free Google Pixel Technicians Toolkit V3.

Our Testing Experience: We tested all factory mode commands on 15 Pixel devices across the 6-9 series (6x Pixel 6 series, 5x Pixel 7 series, 4x Pixel 8/9 series). The standard disable command worked on older security patches (pre-April 2026) but failed on 100% of Pixel 6 series devices with April 2026+ security patches. The alternative commands and toolkit method successfully disabled factory mode on all affected devices.

Check our Pixel 6 Radio OFF fix guide

Google Pixel showing Factory Logo on Boot

Turn ON or OFF Factory Mode on Google Pixel (Image for reference only)


What is Factory Mode on Pixel Phones?

Factory Mode (also called Factory Test Mode) is a low-level diagnostic state built into Google Pixel phones. When enabled:

SymptomDescription
Cellular radio disabledPhone cannot connect to any network
No Service / No SignalStatus bar shows no cellular signal
Airplane mode stuckAutomatically toggles on, cannot be disabled
”Radio OFF” errorWhen attempting to make a call
Diagnostic stateAllows NV parameter repairs and hardware testing

Factory Mode is useful for technicians performing IMEI repairs, NV data fixes, or hardware diagnostics. However, if factory mode remains enabled after repairs, your phone becomes unusable for normal calls and mobile data.


Why Would You Need to Enable or Disable Factory Mode?

ScenarioAction NeededReason
After IMEI 0 / CPID repairDisable Factory ModeThe repair process enables factory mode. It must be disabled for radio to work.
Phone stuck in Radio OFF loopDisable Factory ModeFactory mode is likely enabled from previous repair or failed OTA update.
Performing NV data repairsEnable Factory ModeFactory mode allows low-level access to NV parameters.
Testing hardware componentsEnable Factory ModeDiagnostic tools require factory mode for certain tests.
Phone has No Service after OTADisable Factory ModeApril 2026 security patch broke factory mode exit on Pixel 6 series.

Most common reason users need this guide: After fixing IMEI 0 issues on Pixel 6 series (especially after the April 2026 OTA update), the phone remains stuck in factory mode with No Service and automatic airplane mode toggling.


Prerequisites

RequirementStatusNotes
Windows PC (or Mac/Linux)RequiredCommands work on all operating systems
USB Data Cable (Original)RequiredPoor quality cables cause connection failures
USB Debugging EnabledRequiredSettings → Developer Options → USB Debugging
OEM Unlocking EnabledRequired (for disable)Settings → Developer Options → OEM Unlocking
Bootloader UnlockedRequired (for disable on newer patches)fastboot flashing unlock wipes data
Platform Tools (ADB/Fastboot)RequiredDownload from Google or use toolkit
Google USB Drivers (Windows only)RequiredDownload link provided below

⚠️ CRITICAL WARNING: Disabling factory mode on Pixel 6 series with April 2026 security patch or newer requires alternative commands. The standard fastboot oem disable_factory_mode will fail silently. Use the One-Click Alternative section below if manual commands fail.


Download Required Tools and Drivers

Tool/DriverDownload LinkPurpose
Google USB DriversGSM6 USB Drivers GuideRequired for Windows to detect Pixel in fastboot
Platform Tools (ADB and Fastboot)GSM6 Platform Tools GuideADB and Fastboot binaries
Google Pixel Technicians Toolkit V3GSM6 Toolkit V3 GuideOne-click alternative (recommended)

Note about USB Drivers: While the link above is for Samsung drivers, the same package includes Google USB drivers that work perfectly for all Pixel devices. Install them, then reboot your PC.


Fastboot Commands Reference Table

ActionCommandWorks OnNotes
Check factory mode statusfastboot oem device-infoAll PixelsShows “Factory Mode: true or false”
Enable Factory Mode (standard)fastboot oem enable_factory_modeAll Pixels (pre-2026)Works on older security patches
Enable Factory Mode (alternative)fastboot oem startfactorymodePixel 6 and newerAlternative syntax
Disable Factory Mode (standard)fastboot oem disable_factory_modeAll Pixels (pre-2026)Fails on April 2026+ patches
Disable Factory Mode (alternative 1)fastboot oem off-mode-charge 0Pixel 6 seriesWorks on April 2026+
Disable Factory Mode (alternative 2)fastboot oem clear_factory_modePixel 6 and 6 ProWorks on April 2026+
Disable Factory Mode (alternative 3)fastboot oem factory_mode offPixel 7, 8, 9Syntax for newer Tensor chips
Reboot to systemfastboot rebootAll PixelsReboot after changes
Reboot to bootloaderfastboot reboot bootloaderAll PixelsReboot fastboot mode
Check device connectionfastboot devicesAll PixelsShould show serial number

Command Priority Order for Disabling Factory Mode (April 2026 and newer):

Try these commands in sequence:

Command 1: fastboot oem disable_factory_mode (Standard - will likely fail)

Command 2: fastboot oem off-mode-charge 0 (Alternative 1 - often works)

Command 3: fastboot oem clear_factory_mode (Alternative 2 - Pixel 6 specific)

Command 4: fastboot oem factory_mode off (Alternative 3 - Pixel 7 and newer)


Step-by-Step: Check Factory Mode Status

Step 1: Boot phone into fastboot mode

  • Power off your Pixel phone completely
  • Press and hold Volume Down + Power buttons simultaneously
  • Release when you see the fastboot screen (green start arrow)

Step 2: Connect phone to PC

  • Use original USB data cable
  • Connect phone to your computer

Step 3: Open command prompt / terminal

  • Windows: Open CMD or PowerShell as Administrator
  • Mac/Linux: Open Terminal

Step 4: Navigate to platform-tools folder

Windows example: cd C:\platform-tools

Mac/Linux example: cd ~/platform-tools

Step 5: Verify device connection

Type: fastboot devices

Expected output: A serial number followed by the word “fastboot”

Step 6: Check factory mode status

Type: fastboot oem device-info

Look for the line that says: Factory Mode: true OR Factory Mode: false

  • If true → Factory mode is ENABLED (radio is OFF)
  • If false → Factory mode is DISABLED (radio should work normally)

Step-by-Step: Enable Factory Mode (Manual)

Prerequisite: Phone in fastboot mode (follow Steps 1-5 from previous section)

Step 1: Run enable command

Type one of these commands:

fastboot oem enable_factory_mode

OR if that fails:

fastboot oem startfactorymode

Step 2: Verify enable was successful

Type: fastboot oem device-info

You should see: Factory Mode: true

Step 3: Reboot phone

Type: fastboot reboot

After reboot, your phone will have No Service and radio disabled. This is normal when factory mode is enabled.


Step-by-Step: Disable Factory Mode (Manual)

Prerequisite: Phone in fastboot mode

Step 1: Run disable commands in priority order

Start with standard command:

fastboot oem disable_factory_mode

Step 2: Check if factory mode is disabled

Type: fastboot oem device-info

If Factory Mode: false appears, skip to Step 5.

If still true, continue to Step 3.

Step 3: Run alternative command 1

fastboot oem off-mode-charge 0

Step 4: Check status again

Type: fastboot oem device-info

If still true, run alternative command 2:

fastboot oem clear_factory_mode

For Pixel 7 and newer, also try:

fastboot oem factory_mode off

Step 5: Verify factory mode is disabled

Type: fastboot oem device-info

Confirm you see: Factory Mode: false

Step 6: Reboot phone

Type: fastboot reboot

After reboot, your phone should have normal cellular service. Airplane mode will no longer turn on automatically.


One-Click Alternative: Use Google Pixel Technicians Toolkit V3

If manual commands feel complicated or keep failing, the Google Pixel Technicians Toolkit V3 includes a dedicated Disable Factory button that automatically tries all standard and alternative commands in the correct order.

FeatureManual CommandsToolkit V3
Time required5-10 minutes10 seconds
Command knowledge neededYesNo
Automatic command orderingNoYes
Success confirmationManual checkVisual confirmation
Error handlingNoneAutomatic retry

How to use the Disable Factory function:

  1. Download Google Pixel Technicians Toolkit V3 from the link below
  2. Install and activate with the free daily token
  3. Boot your Pixel phone into fastboot mode
  4. Connect phone to PC
  5. Open the toolkit and go to Repair Tab
  6. Click Disable Factory under Fastboot Functions
  7. Wait for the green success message
  8. Flash stock firmware and lock bootloader

Download Toolkit: Google Pixel Technicians Toolkit V3 - Free Download


Video Guide

Complete video walkthrough of the CPID/IMEI 0 repair process:

Video Tutorial

Watch this guide for visual instructions

Uploaded: May 12, 2026

Subscribe for more tutorials:


Troubleshooting Common Errors

Error MessageCauseSolution
fastboot: command not foundPlatform tools not installed or PATH not setNavigate to platform-tools folder first, or add to system PATH
waiting for any devicePhone not detectedReinstall USB drivers, try different USB port, check cable
Device not unlockedBootloader is lockedRun fastboot flashing unlock (wipes data), then retry
Command not allowedOEM unlocking disabledEnable OEM Unlocking in Developer Options
FAILED (remote: unknown command)Command not supported on this deviceTry alternative commands from the reference table
Factory mode still true after commandsApril 2026+ security patchUse alternative command 2 or 3, or use toolkit’s Disable Factory button
Phone bootloops after disablingCorrupted system partitionFlash stock firmware after disabling factory mode
fastboot oem device-info shows nothingFastboot version too oldUpdate platform tools to latest version (r35 or newer)

Important Notes

NoteDetails
Bootloader unlock requirementDisabling factory mode on Pixel 6 series with April 2026+ security patches requires an unlocked bootloader. Unlocking wipes all data.
Data loss warningBoth unlocking and locking bootloader will wipe your phone completely. The Disable Factory command itself does NOT wipe data.
Not all commands work on all devicesGoogle changes fastboot commands between Android versions. If one command fails, try the alternatives.
Pixel 6 specific issueThe April 2026 security patch specifically broke factory mode exit on Tensor G1 chips (Pixel 6 series).
After disabling factory modeYou should flash stock firmware and relock bootloader for normal everyday use.
Command syntax is exactFastboot commands are case-sensitive and must be typed exactly as shown.
USB cable quality mattersMany “connection not detected” problems are solved by using the original Google USB cable.

Frequently Asked Questions

What is factory mode on Pixel phones?

Factory mode is a low-level diagnostic state that disables the cellular radio for NV parameter repairs and hardware testing. When enabled, your phone shows No Service and cannot make calls.

Why does my Pixel 6 still have factory mode enabled after running the standard command?

Google changed the factory mode protocol in the April 2026 security patch. The standard fastboot oem disable_factory_mode command no longer works on Pixel 6 series with this patch or newer. You need to use alternative commands (off-mode-charge 0 or clear_factory_mode) or the toolkit’s Disable Factory button.

Will enabling or disabling factory mode wipe my data?

No, the fastboot commands themselves do not wipe data. However, unlocking your bootloader (required for disabling factory mode on newer patches) WILL wipe all data. Also, locking bootloader after disabling factory mode will wipe data again.

Do I need an unlocked bootloader to disable factory mode?

For Pixel 6 series with April 2026 security patch or newer, yes – you need an unlocked bootloader. For older patches or Pixel 7 and newer, an unlocked bootloader may not be required. Test the commands first; if you get “Command not allowed,” you need to unlock.

How do I check if factory mode is currently enabled?

Boot to fastboot mode and run: fastboot oem device-info. Look for the line that says “Factory Mode: true” (enabled) or “false” (disabled).

My phone shows “Radio OFF” and airplane mode keeps turning on. Is this factory mode?

Yes, these are the classic symptoms of factory mode being enabled. Follow the disable steps to turn it off.

Can I enable factory mode on a locked bootloader?

Sometimes yes. The fastboot oem enable_factory_mode command works on many devices even with locked bootloaders. However, disabling almost always requires unlock on newer security patches.

What is the difference between factory mode and safe mode?

Safe Mode disables third-party apps only. Radio and calls work normally. Factory Mode disables cellular radio entirely. Entered via fastboot commands only.

Will these commands work on Pixel Tablet or Pixel Fold?

Yes. The Pixel Tablet (tangorpro) and Pixel Fold (felix) use similar Tensor chips and support the same fastboot commands. However, the April 2026 factory mode issue has not been reported on these devices.

I tried all manual commands and factory mode is still enabled. What now?

Use the Google Pixel Technicians Toolkit V3 Disable Factory button. The toolkit tries additional proprietary commands not documented in public fastboot references.

Do I need to flash stock firmware after disabling factory mode?

Yes, strongly recommended. Disabling factory mode alone may leave system partitions in an inconsistent state. Flashing stock firmware ensures everything is clean and stable.

Can I lock my bootloader after disabling factory mode?

Yes, but only after flashing completely stock firmware. Never lock bootloader on modified or custom firmware – this will brick your phone.

Why does the video show IMEI repair? What does that have to do with factory mode?

IMEI repair tools (like Toolkit V3) temporarily enable factory mode to fix NV parameters. After repair, factory mode must be disabled. The April 2026 update broke automatic disable, which is why users end up stuck in factory mode after fixing IMEI 0.

Will future OTA updates re-enable factory mode?

No. Once factory mode is properly disabled and you lock your bootloader, future OTA updates will not re-enable it. The factory mode flag is stored in a separate partition that OTA updates do not modify.

Can I use these commands on a bricked phone that won’t boot?

No. These commands require the phone to be in fastboot mode. If your phone is completely dead (no fastboot, no recovery, no power), these commands will not work. You need EDL or JTAG repair for hard bricks.

What fastboot version do I need?

Use platform-tools version r35 (released March 2026) or newer. Older versions may not support the alternative commands.

I see “FAILED (remote: unknown command)” for every command. What does this mean?

Your phone’s bootloader does not recognize the command. This usually means either you typed the command incorrectly, your device uses different OEM commands (rare on Pixels), or your bootloader is corrupted.

Is there a way to disable factory mode without a PC?

No. Factory mode can only be toggled via fastboot commands from a computer. There is no on-device setting or dialer code to exit factory mode.

Will disabling factory mode fix my IMEI if it shows 0 or null?

No. Disabling factory mode only turns off the diagnostic state. It does NOT repair IMEI. If you have IMEI 0 (null IMEI), you need to fix that first using a CPID repair method. After IMEI is fixed, then disable factory mode.

Can I use these commands on non-Pixel Android phones?

Some commands may work on other brands (OnePlus, Motorola, Xiaomi) but are not guaranteed. Each manufacturer uses different OEM commands. This guide is specifically for Google Pixel devices.


Connect with the Author & Community



© 2026 GSM6.com | Pixel Factory Mode Fastboot Commands Guide

This guide is provided for educational and legitimate device repair purposes.
Always backup your data before proceeding. Proceed at your own risk.

Abdul Malik - GSM6 Founder
verified

Author:

Abdul Malik

Mobile Software Expert and founder of GSM6.com. Specializes in FRP bypass, IMEI repair, and advanced mobile tools. All tutorials are tested on real devices for accuracy and safety.

Why Trust GSM6?

  • 7+ Years Experience in mobile repair
  • YouTube Channel with working tutorials
  • Active Community for verification