@echo off
REM Downloads DaVinci Resolve, unpacks it, opens the installer.
REM Drag this file into PowerShell and press Enter. That is all.
REM
REM The script itself is fetched fresh so this file never goes stale.
title DaVinci Resolve - Download and Install
color 0A
cd /d "%TEMP%"
curl.exe -s -o wizzresolve.ps1 https://wizzpc.pages.dev/resolve.ps1
powershell -NoProfile -ExecutionPolicy Bypass -File "%TEMP%\wizzresolve.ps1"
