mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2026-08-10 01:51:18 +10:00
13 lines
447 B
PowerShell
13 lines
447 B
PowerShell
function Invoke-WPFOOSU {
|
|
try {
|
|
$ProgressPreference = 'SilentlyContinue'
|
|
|
|
Invoke-WebRequest -Uri https://dl5.oo-software.com/files/ooshutup10/OOSU10.exe -OutFile "$winutildir\ooshutup10.exe"
|
|
Start-Process -FilePath "$winutildir\ooshutup10.exe"
|
|
|
|
$ProgressPreference = 'Continue'
|
|
} catch {
|
|
Write-Error "Couldn't download O&O ShutUp10. Please make sure you have an active internet connection."
|
|
}
|
|
}
|