Step-by-step installation guide
Yout-windows-x86_64.exe (~90 MB)
Invoke-WebRequest -Uri "https://desktop.yout.com/download/Yout-windows-x86_64.exe" -OutFile "$HOME\Desktop\Yout.exe"; Start-Process "$HOME\Desktop\Yout.exe"
Click the download button above. Your browser will download the file to your Downloads folder. If your browser asks, choose "Keep" to save the file.
Alternatively, you can download directly via PowerShell:
Invoke-WebRequest -Uri "https://desktop.yout.com/download/Yout-windows-x86_64.exe" -OutFile "$HOME\Downloads\Yout.exe"
Find Yout-windows-x86_64.exe in your Downloads folder and double-click it to run.
Windows SmartScreen shows this warning for any new software that doesn't have a paid code-signing certificate. Yout Desktop is safe to run.
To bypass SmartScreen:
Move the .exe file from Downloads to a permanent folder. Suggested locations:
C:\Program Files\Yout\Yout.exe
Or via Command Prompt (run as Administrator):
mkdir "C:\Program Files\Yout"move "%USERPROFILE%\Downloads\Yout-windows-x86_64.exe" "C:\Program Files\Yout\Yout.exe"
There are several ways to make Yout easily accessible:
Or create a shortcut via PowerShell:
$WshShell = New-Object -ComObject WScript.Shell$Shortcut = $WshShell.CreateShortcut("$HOME\Desktop\Yout.lnk")$Shortcut.TargetPath = "C:\Program Files\Yout\Yout.exe"$Shortcut.Save()
Open Yout Desktop and sign in with your Yout.com account (or create one for free). Paste a video URL, choose your format, and start format shifting.
To remove Yout Desktop from your PC:
Or via PowerShell:
Remove-Item "C:\Program Files\Yout" -Recurse -Force; Remove-Item "$HOME\Desktop\Yout.lnk" -ErrorAction SilentlyContinue
Yout Desktop is a standalone .exe — no registry entries or system services to clean up.