This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Upgrade all installed packages via winget | |
| # --include-unknown : includes packages without a version in the registry | |
| # --accept-package-agreements : silently accepts package licence agreements | |
| # --accept-source-agreements : silently accepts source (e.g. winget) ToS | |
| # --silent : suppresses installer UI where possible | |
| winget upgrade --all --include-unknown --accept-package-agreements --accept-source-agreements --silent |