install-obs-studio
Installs OBS Studio
#requires -version 5.1
try {
$stopWatch = [system.diagnostics.stopwatch]::startNew()
"⏳ Installing OBS Studio from Microsoft Store..."
if ($IsLinux -or $IsMacOS) {
"Sorry, not supported yet."
} else {
& winget install --id XPFFH613W8V6LV
if ($lastExitCode -ne 0) { throw "Can't install OBS, is it already installed?" }
}
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
"✅ OBS Studio installed successfully in $($elapsed)s."
exit 0
} catch {
throw
}This script has no configurable parameters.