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

115 lines
2.8 KiB
PowerShell
Raw Normal View History

2022-12-20 01:54:14 +00:00
<# ARRAYS/VARIABLES #>
2023-01-18 20:58:49 +00:00
#App to Run (as SYSTEM)
2023-01-24 01:30:20 +00:00
#$RunWait = $False if it shouldn't be waited for completion. Example:
#$RunSystem = "$PSScriptRoot\bins\MsiZap.exe"
2023-01-24 01:30:20 +00:00
#$RunSwitch = "tw! {GUID}"
2023-01-18 20:58:49 +00:00
$RunSystem = ""
2023-01-09 00:25:39 +00:00
$RunSwitch = ""
$RunWait = $True
2022-12-20 01:54:14 +00:00
#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-21 22:56:59 +00:00
#Beginning of App Name string to Silently Uninstall (MSI/NSIS/INNO/EXE with defined silent uninstall in registry)
#Multiple: "app1*","app2*", required wildcard (*) after; search is done with "-like"!
$App = @("")
2022-12-20 01:54:14 +00:00
#Beginning of Desktop Link Name to Remove - optional wildcard (*) after, without .lnk, multiple: "lnk1","lnk2"
$Lnk = @("")
2023-01-03 05:16:19 +00:00
#Registry _value_ (DWord/String) to add in existing registry Key (Key created if not existing). Example:
#$AddKey = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Winget-AutoUpdate"
#$AddValue = "WAU_BypassListForUsers"
2023-01-03 04:29:13 +00:00
#$AddTypeData = "1"
#$AddType = "DWord"
$AddKey = ""
$AddValue = ""
2023-01-03 04:29:13 +00:00
$AddTypeData = ""
$AddType = ""
#Registry _value_ to delete in existing registry Key.
#Value can be omitted for deleting entire Key!. Example:
#$DelKey = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Winget-AutoUpdate"
#$DelValue = "WAU_BypassListForUsers"
$DelKey = ""
$DelValue = ""
#Remove file/directory, multiple: "file1","file2"
$DelFile = @("")
#Copy file/directory
#Example:
#$CopyFile = "C:\Logfiles"
#$CopyTo = "C:\Drawings\Logs"
$CopyFile = ""
$CopyTo = ""
2023-01-17 23:53:52 +00:00
#Find/Replace text in file
#Example:
2023-01-18 00:07:32 +00:00
#$File = "C:\dummy.txt"
2023-01-18 00:35:01 +00:00
#$FindText = 'brown fox'
#$ReplaceText = 'white fox'
2023-01-18 00:07:32 +00:00
$File = ""
2023-01-18 00:35:01 +00:00
$FindText = ''
$ReplaceText = ''
2023-01-17 23:53:52 +00:00
#Grant "Modify" for directory/file to "Authenticated Users" - multiple: "dir1","dir2"
$GrantPath = @("")
#Install App from Winget Repo, multiple: "appID1","appID2". Example:
#$AppID = @("Microsoft.PowerToys")
$AppID = @("")
2023-01-18 20:58:49 +00:00
#App to Run (as current logged-on user)
$RunUser = ""
$User = $True
2022-12-20 01:54:14 +00:00
<# FUNCTIONS #>
2022-12-20 02:36:44 +00:00
. $PSScriptRoot\_Mods-Functions.ps1
2022-12-20 01:54:14 +00:00
<# MAIN #>
2023-01-18 20:58:49 +00:00
if ($RunSystem) {
Invoke-ModsApp $RunSystem $RunSwitch $RunWait ""
2023-01-09 00:25:39 +00:00
}
2022-12-20 01:54:14 +00:00
if ($Proc) {
Stop-ModsProc $Proc
}
if ($Wait) {
Wait-ModsProc $Wait
}
if ($App) {
Uninstall-ModsApp $App
}
if ($Lnk) {
Remove-ModsLnk $Lnk
}
2023-01-03 04:29:13 +00:00
if ($AddKey -and $AddValue -and $AddTypeData -and $AddType) {
Add-ModsReg $AddKey $AddValue $AddTypeData $AddType
}
if ($DelKey) {
Remove-ModsReg $DelKey $DelValue
}
if ($DelFile) {
Remove-ModsFile $DelFile
}
if ($CopyFile -and $CopyTo) {
Copy-ModsFile $CopyFile $CopyTo
}
2023-01-18 00:07:32 +00:00
if ($File -and $FindText -and $ReplaceText) {
Edit-ModsFile $File $FindText $ReplaceText
2023-01-17 23:53:52 +00:00
}
if ($GrantPath) {
Grant-ModsPath $GrantPath
}
if ($AppID) {
Install-ModsApp $AppID
}
2023-01-18 20:58:49 +00:00
if ($RunUser) {
Invoke-ModsApp $RunUser "" "" $User
}
2022-12-20 01:54:14 +00:00
<# EXTRAS #>