wingetautoupdate/Winget-AutoUpdate/mods/_AppID-template.ps1

32 lines
746 B
PowerShell
Raw Normal View History

2022-12-20 01:54:14 +00:00
<# ARRAYS/VARIABLES #>
#Beginning of Process Name to Stop - optional wildcard (*) after, without .exe, multiple: "proc1","proc2"
$Proc = @("")
2022-12-20 02:19:46 +00:00
#Beginning of Process Name to Wait for to End - optional wildcard (*) after, without .exe, multiple: "proc1","proc2"
2022-12-20 01:54:14 +00:00
$Wait = @("")
2022-12-20 02:19:46 +00:00
#Beginning of App Name string to Silently Uninstall (MSI/NSIS/INNO) - required wildcard (*) after!
2022-12-20 01:54:14 +00:00
$App = ""
#Beginning of Desktop Link Name to Remove - optional wildcard (*) after, without .lnk, multiple: "lnk1","lnk2"
$Lnk = @("")
<# FUNCTIONS #>
2022-12-20 02:36:44 +00:00
. $PSScriptRoot\_Mods-Functions.ps1
2022-12-20 01:54:14 +00:00
<# MAIN #>
if ($Proc) {
Stop-ModsProc $Proc
}
if ($Wait) {
Wait-ModsProc $Wait
}
if ($App) {
Uninstall-ModsApp $App
}
if ($Lnk) {
Remove-ModsLnk $Lnk
}
<# EXTRAS #>