mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-09 01:25:04 +01:00
25 lines
611 B
PowerShell
Executable File
25 lines
611 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Uninstalls the Chrome browser
|
|
.DESCRIPTION
|
|
This PowerShell script uninstalls the Google Chrome browser from the local computer.
|
|
.EXAMPLE
|
|
PS> ./uninstall-chrome.ps1
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz | License: CC0
|
|
#>
|
|
|
|
try {
|
|
"⏳ Uninstalling Google Chrome..."
|
|
|
|
& winget uninstall --id Google.Chrome
|
|
if ($lastExitCode -ne "0") { throw "Can't uninstall Google Chrome, is it installed?" }
|
|
|
|
"✔️ Google Chrome is uninstalled now."
|
|
exit 0 # success
|
|
} catch {
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
} |