Skip to content

Instantly share code, notes, and snippets.

{
"microsoft.net.sdk.maui": "7.0.86/7.0.100"
}
@yunusefendi52
yunusefendi52 / download-scrcpy.ps1
Created March 23, 2022 02:31
download-scrcpy.ps1
Set-Location $HOME
$ToolDir = Join-Path $HOME ".scrcpy-tools"
New-Item $ToolDir -ItemType Directory -Force
$Is64Bit = [System.Environment]::Is64BitOperatingSystem
if ($Is64Bit) {
$ScrcpyUrl = "https://github.com/Genymobile/scrcpy/releases/download/v1.23/scrcpy-win64-v1.23.zip"
} else {
$ScrcpyUrl = "https://github.com/Genymobile/scrcpy/releases/download/v1.23/scrcpy-win32-v1.23.zip"
}