Text
parent
be8e5777ff
commit
9183ec1cbc
|
@ -1,5 +1,5 @@
|
|||
Pre/During/Post install/uninstall custom scripts should be placed here.
|
||||
A script Template and Mods Functions are included to get you started...
|
||||
A script Template and Mods Functions are included an example to get you started...
|
||||
|
||||
Scripts that are considered:
|
||||
**AppID**`-preinstall.ps1`, `-upgrade.ps1`, `-install.ps1`, `-installed.ps1`, `-preuninstall.ps1`, `-uninstall.ps1` or `-uninstalled.ps1`
|
||||
|
|
|
@ -5,7 +5,8 @@ $Proc = @("")
|
|||
#Beginning of Process Name to Wait for to End - optional wildcard (*) after, without .exe, multiple: "proc1","proc2"
|
||||
$Wait = @("")
|
||||
|
||||
#Beginning of App Name string to Silently Uninstall (MSI/NSIS/INNO/EXE with defined silent uninstall) - required wildcard (*) after!
|
||||
#Beginning of App Name string to Silently Uninstall (MSI/NSIS/INNO/EXE with defined silent uninstall in registry)
|
||||
#Required wildcard (*) after, search is done with "-like"!
|
||||
$App = ""
|
||||
|
||||
#Beginning of Desktop Link Name to Remove - optional wildcard (*) after, without .lnk, multiple: "lnk1","lnk2"
|
||||
|
|
Loading…
Reference in New Issue