wingetautoupdate/Sources/Winget-AutoUpdate/mods
Romain 0964f1a48c Edit registry 2024-09-13 22:22:21 +02:00
..
bins restruct 2024-09-01 15:12:10 +02:00
README.md restruct 2024-09-01 15:12:10 +02:00
_AppID-template.ps1 Edit registry 2024-09-13 22:22:21 +02:00
_Mods-Functions.ps1 auto format 2024-09-02 16:10:21 +02:00
_WAU-mods-template.ps1 restruct 2024-09-01 15:12:10 +02:00
_WAU-notinstalled-template.ps1 spell 2024-09-02 16:44:53 +02:00

README.md

Mods for WAU (if Network is active/any Winget is installed/running as SYSTEM):

Custom script should be placed here.
A script Template _WAU-mods-template.ps1 is included to get you started.
Rename it to _WAU-mods.ps1 if you want to activate/run it via Winget-Upgrade.ps1.

AppID Pre/During/Post install/uninstall:

Custom scripts should be placed here.
A script Template and Mods Functions are included as an example to get you started...

Scripts that are considered:
AppID-preinstall.ps1, -upgrade.ps1, -install.ps1, -installed.ps1 or -notinstalled.ps1.
(-preuninstall.ps1, -uninstall.ps1 or -uninstalled.ps1 - if used together with Winget-Install).

  • Runs before upgrade/install: AppID-preinstall.ps1
  • Runs during upgrade/install (before install check): AppID-upgrade.ps1/AppID-install.ps1
  • Runs after upgrade/install has been confirmed: AppID-installed.ps1
  • Runs after a failed upgrade/install: AppID-notinstalled.ps1
  • Runs after a failed upgrade/install: _WAU-notinstalled.ps1 (any individual AppID-notinstalled.ps1 overrides this global one)

The -install mod will be used for upgrades too if -upgrade doesn't exist (WAU first tries & $Winget upgrade --id and if the app isn't detected after that & $Winget install --id is tried).

AppID-install.ps1 is recommended because it's used in both scenarios.

A script Template for an all-purpose mod (_WAU-notinstalled-template.ps1) is included in which actions can be taken if an upgrade/install fails for any AppID (any individual AppID-notinstalled.ps1 overrides this global one) Name it _WAU-notinstalled.ps1 for activation

Winget native parameters:

Another finess is the AppID followed by the -override suffix as a text file (.txt).

Example:
Canneverbe.CDBurnerXP-override.txt with the content ADDLOCAL=All REMOVE=Desktop_Shortcut /qn

This will use the content of the text file as a native winget --override parameter in WAU upgrading.