Mirror Phone & Tablet to PC (FAST)

x
Bookmark

Mirror Your Android Phone & Tablet to Your PC at the Same Time (No Root, No Hassle!)

Want to show both your phone and tablet screens on your PC—for tutorials, live streaming, or just convenience? It’s easy and 100% free with a small tool called scrcpy. Here’s how to do it, plus a universal script to make it effortless every time.


What is scrcpy?

scrcpy (pronounced “screen copy”) is a free, open-source tool that mirrors your Android device’s display onto your computer—with no root required. It works on Windows, macOS, and Linux, and supports multiple devices at once.


What You’ll Need

  • An Android phone and/or tablet

  • One USB cable for each device

  • A Windows PC (macOS & Linux are also supported, steps are similar)

  • scrcpy software (download here)

  • (Optional) OBS Studio if you want to record or livestream your screens


Step 1: Download and Unzip scrcpy

  1. Go to the scrcpy releases page.

  2. Download the latest scrcpy-win64-vX.X.X.zip file under Assets.

  3. Unzip the folder anywhere you like (for example, C:\Tools\scrcpy or your Desktop).


Step 2: Enable Developer Options and USB Debugging

On each Android device:

  1. Open Settings > About phone (or About tablet).

  2. Tap Software information if needed.

  3. Tap Build number seven times until you see “You are now a developer!”

  4. Go back to Settings > Developer options.

  5. Turn on USB debugging.

Tip: You may need to enter your device PIN or password during this process.


Step 3: Connect Your Devices

  1. Plug your phone and tablet into your PC using USB cables.

  2. If prompted, tap Allow on the “Allow USB debugging?” popup.


Step 4: Find Your Device IDs

  1. Open a Command Prompt in your scrcpy folder:

    • Hold Shift and right-click inside the folder, choose Open command window here (or type cmd in the address bar and press Enter).

  2. Type:

    adb.exe devices
  3. Note the device IDs shown, for example:

    List of devices attached
    R52R301CR2V device
    R5CY637FC7B device
  4. Write down your device IDs for the next step.


Step 5: Create a Universal Batch Script (start.bat)

Paste the following code into Notepad and save as start.bat in your scrcpy folder.
Update the folder path and device IDs for your setup.

@echo off
REM === Set this to your scrcpy folder location ===
cd /d "C:\Path\To\Your\scrcpy-folder"
REM === Replace these with your actual device IDs ===
set DEVICE1=YOUR_FIRST_DEVICE_ID
set DEVICE2=YOUR_SECOND_DEVICE_IDadb.exe devices > devices.txt
type devices.txtset FOUND1=0
set FOUND2=0for /f “tokens=1” %%A in (devices.txt) do (
if “%%A”==”%DEVICE1%” set FOUND1=1
if “%%A”==”%DEVICE2%” set FOUND2=1
)if %FOUND1%==1 (
echo Starting scrcpy for device 1 (%DEVICE1%)
start “” scrcpy.exe -s %DEVICE1%
) else (
echo Device 1 (%DEVICE1%) NOT found.
)

if %FOUND2%==1 (
echo Starting scrcpy for device 2 (%DEVICE2%)
start “” scrcpy.exe -s %DEVICE2%
) else (
echo Device 2 (%DEVICE2%) NOT found.
)

if %FOUND1%==0 if %FOUND2%==0 (
echo No devices found! Please connect at least one device.
)

del devices.txt
echo Done. Press any key to exit.
pause
exit

How to Use the Script:

  • Replace "C:\Path\To\Your\scrcpy-folder" with the path where you unzipped scrcpy.

  • Replace YOUR_FIRST_DEVICE_ID and YOUR_SECOND_DEVICE_ID with the IDs you found from the adb devices command.

  • Tip: You can add more devices by copying the lines and adding new variables.


Step 6: Run the Script

  • Double-click start.bat to launch.

  • The script will check which of your devices are connected and only start scrcpy for those present.

  • Each device will open in its own window, ready to use, record, or stream.


Step 7 (Optional): Add to OBS Studio

Want to record or stream both screens?

  1. Download and install OBS Studio.

  2. In OBS, add a Window Capture source for each scrcpy window.

  3. Arrange and resize the windows as you like—side by side, picture-in-picture, etc.


Troubleshooting

  • Device not showing up?

    • Make sure USB debugging is enabled and you tapped “Allow” on the prompt.

    • Try a different USB cable or port.

    • Run adb kill-server then adb start-server in Command Prompt if connection issues persist.

  • Want to mirror only one device?

    • Just connect that device, and the script will detect it automatically.


Useful Links


Conclusion

With this universal script and scrcpy, you can mirror and control multiple Android devices on your PC—perfect for demos, support, tutorials, or livestreams.
No root, no bloatware, and no more messing with screen recorders or complicated software!

If you have questions or run into trouble, leave a comment below. Happy mirroring!