Files
winutil/docs/content/dev/tweaks/z--Advanced-Tweaks---CAUTION/OOSUbutton.md
T
2026-06-03 13:43:59 -05:00

20 lines
594 B
Markdown

---
title: "O&O ShutUp10++ - Run"
description: ""
---
```powershell {filename="functions/public/Invoke-WPFOOSU.ps1",linenos=inline,linenostart=1}
function Invoke-WPFOOSU {
try {
$ProgressPreference = 'SilentlyContinue'
Invoke-WebRequest -Uri https://dl5.oo-software.com/files/ooshutup10/OOSU10.exe -OutFile "$Env:Temp\ooshutup10.exe"
Start-Process -FilePath "$Env:Temp\ooshutup10.exe"
$ProgressPreference = 'Continue'
} catch {
Write-Error "Couldn't download O&O ShutUp10. Please make sure you have an active internet connection."
}
}
```