phone-over-laptop

Mirror Your Phone On Windows 11 Now using Scrcpy !!

Okay, if you’ve ever wanted to use your Android phone on your computer screen, then scrcpy is the way to go. It’s a super cool, free tool, anyone can use it. It works on both Linux and Windows 😆. And you don’t have to download and extract and then install all this up. All you have to do is type 2-3 commands on your Windows Terminal ( PowerShell ). If you have Windows 11 its like a🫰. You can Wirelessly mirror your Phone to your computer in under 10 min. So let’s begin…

Features of Scrcpy

  • See Everything: Watch your phone’s screen on your computer – games, apps, whatever you’re using!
  • Take Charge: Use your computer’s mouse and keyboard to control your phone. Super smooth for games and typing.
  • Hear the Sounds: Your phone’s sounds play through the computer’s speakers, just like that!
  • Easy on the Computer: Scrcpy doesn’t need much power and works on most computers.
  • No Rooting: No need to mess with your phone’s main settings.
  • Works Everywhere: Windows, Mac, Linux – scrcpy works on all of them!

Setting up Scrcpy on Windows

Search for “PowerShell” in Windows, right-click, and choose “Run as administrator”. Type these commands one by one, and press Enter after each: This uses the Windows Package Manager (Winget) to get all the right tools.

winget install adb
Winget install scrcpy

Setting up Scrcpy on Linux

If you use Linux, it’s even easier! Use your package manager:

  • Debian/Ubuntu: sudo apt install scrcpy adb
  • Fedora/CentOS: sudo dnf install scrcpy adb
  • Arch Linux: sudo pacman -S scrcpy adb

After that, the steps are the same as on Windows.

Wireless Connection (Android 11 or newer):

  1. Developer Options Time: Go to your phone’s Settings, search for “Developer options”. If it’s not there, go into “About phone” and tap “Build number” seven times.
  2. Turn on Wireless Debugging: Inside Developer options, find “Wireless debugging” and switch it on.
  3. Pair Your Devices: Make sure your phone and computer are on the same Wi-Fi. In “Wireless debugging”, tap “Pair with code”. You’ll see an IP address, port number, and a pairing code.
  4. Connect with ‘adb’: Open PowerShell and type this (replace the placeholders with your code):

PowerShell Command For Pairing Your Phone With adb

adb pair IP:port code 


For example: 

adb pair 192.168.1.5:45650 123456
  1. Start Scrcpy: In PowerShell, just type scrcpy and press Enter!

Note: If you want to control your phone easily, plugging it in with a USB cable is best. It’s a bit faster that way.

Scrcpy with USB for Mirroring Only

While connecting wirelessly is convenient, a USB cable offers lower latency and a more stable connection, making it ideal for mirroring your phone’s screen without control functionalities. Here’s how to use scrcpy with a USB cable:

1. Enable USB Debugging: Follow the same steps as outlined in the “Connecting Wirelessly” section, but enable “USB debugging” instead.

2. Connect Your Phone: Plug your phone into your computer using a USB cable.

3. Verify Connection: Open your terminal (PowerShell for Windows) and type:

adb devices

If your device is listed, you’re connected!

4. Start Scrcpy: Simply type the following command in your terminal and press Enter:

scrcpy

Your phone’s screen should now be mirrored on your computer. This method allows you to see your phone’s screen in real-time but doesn’t offer control using your keyboard or mouse.

Controlling Your Phone with Scrcpy

Scrcpy provides two primary methods for controlling your phone from your computer:

1. Using --otg:

This method enables On-The-Go (OTG) mode, allowing you to control your phone’s basic functionalities like swiping, tapping, and scrolling using your mouse. It’s suitable for simple interactions and navigating the interface.

Steps

scrcpy --otg

Now, you can use your mouse to interact with your phone’s screen within the scrcpy window.

2. Using --hid-mouse and --hid-keyboard:

This method provides a more precise and familiar experience by simulating a physical mouse and keyboard connected directly to your phone. It offers better control for tasks like typing, playing games, and interacting with specific apps.

Steps

scrcpy --hid-mouse --hid-keyboard

Note: This method may require additional configuration on some devices, especially older models. Refer to the scrcpy documentation for compatibility details and troubleshooting: https://github.com/Genymobile/scrcpy.

Both methods offer different levels of control and may require some experimentation to find the one that suits your needs. Remember, a stable USB connection is crucial for smooth and responsive control over your phone using scrcpy.

What is scrcpy and what does it do?

Scrcpy is a free and open-source tool that allows you to mirror your Android phone’s screen onto your computer and, in some cases, control your phone directly using your keyboard and mouse.

Is scrcpy safe to use?

Scrcpy is generally considered safe as it doesn’t require root access on your Android phone and doesn’t modify your device’s system files.

Do I need a rooted phone to use scrcpy?

No, scrcpy works without needing root access on your Android phone.