mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-02-04 06:50:09 +00:00
* Updated winutil website add git ignore to not upload unnecessarily file. i have also updated microwin docs and added a copyright info to the footer * Update _index.md * Update KnownIssues.md * Update links update all the links for github to the corresponding pages. i have kept the original links aswell but commented out * update hugo workflow to use version 0.147.0 * Update en.yaml * update hugo toml to get rid off powered by * Update docs.yaml * Update KnownIssues.md * Update KnownIssues.md * Update KnownIssues.md * Update compatibility note for MicroWin and Ventoy * removed quad 9 dns * fixed all the incorrect code block in markdown file * Replace hardcoded page lists with auto-discovery shortcode Created a new shortcode at docs/layouts/shortcodes/autolinks.html. This enables auto-discovery when creating new Markdown files, streamlining the workflow for future documentation updates. * updated os requirements
29 lines
1.1 KiB
Markdown
29 lines
1.1 KiB
Markdown
# Run OO Shutup 10
|
|
|
|
```powershell
|
|
function Invoke-WPFOOSU {
|
|
<#
|
|
.SYNOPSIS
|
|
Downloads and runs OO Shutup 10
|
|
#>
|
|
try {
|
|
$OOSU_filepath = "$ENV:temp\OOSU10.exe"
|
|
$Initial_ProgressPreference = $ProgressPreference
|
|
$ProgressPreference = "SilentlyContinue" # Disables the Progress Bar to drasticly speed up Invoke-WebRequest
|
|
Invoke-WebRequest -Uri "https://dl5.oo-software.com/files/ooshutup10/OOSU10.exe" -OutFile $OOSU_filepath
|
|
Write-Host "Starting OO Shutup 10 ..."
|
|
Start-Process $OOSU_filepath
|
|
} catch {
|
|
Write-Host "Error Downloading and Running OO Shutup 10" -ForegroundColor Red
|
|
}
|
|
finally {
|
|
$ProgressPreference = $Initial_ProgressPreference
|
|
}
|
|
}
|
|
```
|
|
|
|
## Registry Changes
|
|
Applications and System Components store and retrieve configuration data to modify windows settings, so we can use the registry to change many settings in one place.
|
|
|
|
You can find information about the registry on [Wikipedia](https://www.wikiwand.com/en/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry).
|