Files
PowerShell/scripts/install-rufus.ps1
2025-07-09 14:33:56 +02:00

28 lines
618 B
PowerShell
Executable File

<#
.SYNOPSIS
Installs Rufus
.DESCRIPTION
This PowerShell script installs Rufus from the Microsoft Store.
.EXAMPLE
PS> ./install-rufus.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
#requires -version 5.1
try {
"Installing Rufus, please wait..."
& winget install "Rufus" --source msstore --accept-package-agreements --accept-source-agreements
if ($lastExitCode -ne 0) { throw "'winget install' failed" }
"Rufus installed successfully."
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}