doc/windows.md
Download the latest release:
scrcpy-win64-v4.0.zip (64-bit)75dbeb5b00e6f64292f26f70900ae55ca397786bdfb0b9bbeb481a0549047457</sub>scrcpy-win32-v4.0.zip (32-bit)5f860ad2fc66042bd490e31b983d5e40fd749314f28f0dcb9fec697fa89861be</sub>and extract it.
From WinGet (ADB and other dependencies will be installed alongside scrcpy):
winget install --exact Genymobile.scrcpy
From Chocolatey:
choco install scrcpy
choco install adb # if you don't have it yet
From Scoop:
scoop install scrcpy
scoop install adb # if you don't have it yet
See build.md to build and install the app manually.
Make sure that your device meets the prerequisites.
Scrcpy is a command line application: it is mainly intended to be executed from a terminal with command line arguments.
To open a terminal at the expected location, double-click on
open_a_terminal_here.bat in your scrcpy directory, then type your command. For
example, without arguments:
scrcpy
or with arguments (here to disable audio and record to file.mkv):
scrcpy --no-audio --record=file.mkv
Documentation for command line arguments is available:
scrcpy --helpIf you plan to always use the same arguments, create a file myscrcpy.bat
(enable show file extensions to avoid confusion) containing your command, For
example:
scrcpy --prefer-text --turn-screen-off --stay-awake
Add --pause-on-exit=if-error if you want the console to remain open when
scrcpy fails:
scrcpy --prefer-text --turn-screen-off --stay-awake --pause-on-exit=if-error
Then just double-click on that file to run it.
To start scrcpy without opening a terminal, double-click scrcpy-noconsole.vbs
(note that errors won't be shown). To pass arguments, edit (a copy of)
scrcpy-noconsole.vbs and add the desired arguments.