├── .github ├── .powershell-psscriptanalyzer.psd1 ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md ├── copilot-instructions.md ├── cspell.json ├── dependabot.yml └── workflows │ ├── GA_Close-Inactive-Issues.yml │ ├── GA_Mega-linter.yml │ ├── GitFlow_Check-pull-request-source-branch.yml │ ├── GitFlow_Create-Release-Branch-and-PR.yaml │ ├── GitFlow_Make-Release-and-Sync-to-Dev.yml │ └── GitFlow_Nightly-builds.yml ├── ADMX ├── WinGet-AutoUpdate-Configurator.admx └── en-us │ └── WinGet-AutoUpdate-Configurator.adml ├── CONTRIBUTING.md ├── LICENSE ├── Modified └── Winget-AutoUpdate │ └── icons │ ├── error.png │ ├── info.png │ ├── success.png │ └── warning.png ├── ProgramData ├── LastCommand.txt └── mods │ └── _Mods-Functions.ps1 ├── README.md ├── Refresh-WingetConfiguration.ps1 ├── Sources ├── Policies │ ├── ADMX │ │ ├── WAU.admx │ │ └── en-US │ │ │ └── WAU.adml │ └── README.md ├── Tools │ └── Detection │ │ └── winget-detect.ps1 ├── WAU │ ├── Winget-AutoUpdate-Install.ps1 │ └── Winget-AutoUpdate │ │ ├── Version.txt │ │ ├── WAU-Policies.ps1 │ │ ├── functions │ │ ├── Get-ExcludedApps.ps1 │ │ ├── Get-IncludedApps.ps1 │ │ ├── Get-WAUConfig.ps1 │ │ ├── Get-WingetCmd.ps1 │ │ ├── Get-WingetOutdatedApps.ps1 │ │ ├── Install-Prerequisites.ps1 │ │ ├── Invoke-DirProtect.ps1 │ │ ├── Invoke-LogRotation.ps1 │ │ ├── Invoke-PostUpdateActions.ps1 │ │ └── Update-WAU.ps1 │ │ └── mods │ │ ├── _AppID-template.ps1 │ │ └── _WAU-notinstalled-template.ps1 ├── Winget-AutoUpdate │ ├── ServiceUI.exe │ ├── User-Run.ps1 │ ├── WAU-Installer-GUI.ps1 │ ├── WAU-Notify.ps1 │ ├── WAU-Policies.ps1 │ ├── Winget-Install.ps1 │ ├── Winget-Upgrade.ps1 │ ├── config │ │ ├── WAU-MSI_Actions.ps1 │ │ └── default_excluded_apps.txt │ ├── functions │ │ ├── Add-ScopeMachine.ps1 │ │ ├── Compare-SemVer.ps1 │ │ ├── Confirm-Installation.ps1 │ │ ├── Get-AZCopy.ps1 │ │ ├── Get-AppInfo.ps1 │ │ ├── Get-ExcludedApps.ps1 │ │ ├── Get-IncludedApps.ps1 │ │ ├── Get-NotifLocale.ps1 │ │ ├── Get-WAUAvailableVersion.ps1 │ │ ├── Get-WAUConfig.ps1 │ │ ├── Get-WingetCmd.ps1 │ │ ├── Get-WingetOutdatedApps.ps1 │ │ ├── Get-WingetSystemApps.ps1 │ │ ├── Install-Prerequisites.ps1 │ │ ├── Invoke-LogRotation.ps1 │ │ ├── Start-NotifTask.ps1 │ │ ├── Test-ListPath.ps1 │ │ ├── Test-Mods.ps1 │ │ ├── Test-ModsPath.ps1 │ │ ├── Test-Network.ps1 │ │ ├── Test-PendingReboot.ps1 │ │ ├── Test-WAUMods.ps1 │ │ ├── Update-App.ps1 │ │ ├── Update-StoreApps.ps1 │ │ ├── Update-WAU.ps1 │ │ └── Write-ToLog.ps1 │ ├── icons │ │ ├── error.png │ │ ├── info.png │ │ ├── success.png │ │ └── warning.png │ ├── locale │ │ ├── cz.xml │ │ ├── de.xml │ │ ├── en.xml │ │ ├── es.xml │ │ ├── fi.xml │ │ ├── fr.xml │ │ ├── hu.xml │ │ ├── it.xml │ │ ├── lv.xml │ │ ├── nb.xml │ │ ├── nl.xml │ │ ├── pl.xml │ │ ├── pt.xml │ │ ├── ru.xml │ │ ├── sv.xml │ │ ├── uk.xml │ │ ├── zh-CHS.xml │ │ └── zh-CHT.xml │ └── mods │ │ ├── README.md │ │ ├── _AppID-template.ps1 │ │ ├── _Mods-Functions.ps1 │ │ ├── _WAU-mods-postsys-template.ps1 │ │ ├── _WAU-mods-template.ps1 │ │ ├── _WAU-notinstalled-template.ps1 │ │ └── bins │ │ └── README.md └── Wix │ ├── build.wxs │ └── files │ ├── banner.bmp │ ├── dialog.bmp │ └── icon.ico ├── WAUMSI ├── Add-ScopeMachine.ps1.sig ├── Compare-SemVer.ps1.sig ├── Confirm-Installation.ps1.sig ├── Get-AZCopy.ps1.sig ├── Get-AppInfo.ps1.sig ├── Get-ExcludedApps.ps1.sig ├── Get-IncludedApps.ps1.sig ├── Get-NotifLocale.ps1.sig ├── Get-WAUAvailableVersion.ps1.sig ├── Get-WAUConfig.ps1.sig ├── Get-WingetCmd.ps1.sig ├── Get-WingetOutdatedApps.ps1.sig ├── Get-WingetSystemApps.ps1.sig ├── Install-Prerequisites.ps1.sig ├── Invoke-LogRotation.ps1.sig ├── ServiceUI.exe.sig ├── Start-NotifTask.ps1.sig ├── Test-ListPath.ps1.sig ├── Test-Mods.ps1.sig ├── Test-ModsPath.ps1.sig ├── Test-Network.ps1.sig ├── Test-PendingReboot.ps1.sig ├── Test-WAUMods.ps1.sig ├── Update-App.ps1.sig ├── Update-StoreApps.ps1.sig ├── Update-WAU.ps1.sig ├── User-Run.ps1.sig ├── WAU-Installer-GUI.ps1.sig ├── WAU-MSI_Actions.ps1.sig ├── WAU-Notify.ps1.sig ├── WAU-Policies.ps1.sig ├── WAU.msi ├── WAUaaS.mst ├── Winget-Install.ps1.sig ├── Winget-Upgrade.ps1.sig ├── Write-ToLog.ps1.sig ├── _AppID-template.ps1.sig ├── _Mods-Functions.ps1.sig ├── _WAU-mods-postsys-template.ps1.sig ├── _WAU-mods-template.ps1.sig └── _WAU-notinstalled-template.ps1.sig ├── WinGet-AutoUpdate-Configurator ├── Generic.psm1 ├── HGO-CodeSigning-2.cer ├── HGO-CodeSigning-TS.cer ├── HGO-CodeSigning.cer ├── UpdateTask.xml ├── Winget-AutoUpdate-arm64.exe ├── Winget-AutoUpdate-arm64.exe.cat ├── Winget-AutoUpdate-arm64.exe.config ├── Winget-AutoUpdate-arm64.exe.wrunconfig ├── Winget-AutoUpdate-x64.exe ├── Winget-AutoUpdate-x64.exe.cat ├── Winget-AutoUpdate-x64.exe.config ├── Winget-AutoUpdate-x64.exe.wrunconfig ├── Winget-AutoUpdate-x86.exe ├── Winget-AutoUpdate-x86.exe.cat ├── Winget-AutoUpdate-x86.exe.config ├── Winget-AutoUpdate-x86.exe.wrunconfig └── _AppID-template.ps1 └── docs └── img └── teaser1.png /.github/.powershell-psscriptanalyzer.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/.github/.powershell-psscriptanalyzer.psd1 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/.github/cspell.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/GA_Close-Inactive-Issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/.github/workflows/GA_Close-Inactive-Issues.yml -------------------------------------------------------------------------------- /.github/workflows/GA_Mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/.github/workflows/GA_Mega-linter.yml -------------------------------------------------------------------------------- /.github/workflows/GitFlow_Check-pull-request-source-branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/.github/workflows/GitFlow_Check-pull-request-source-branch.yml -------------------------------------------------------------------------------- /.github/workflows/GitFlow_Create-Release-Branch-and-PR.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/.github/workflows/GitFlow_Create-Release-Branch-and-PR.yaml -------------------------------------------------------------------------------- /.github/workflows/GitFlow_Make-Release-and-Sync-to-Dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/.github/workflows/GitFlow_Make-Release-and-Sync-to-Dev.yml -------------------------------------------------------------------------------- /.github/workflows/GitFlow_Nightly-builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/.github/workflows/GitFlow_Nightly-builds.yml -------------------------------------------------------------------------------- /ADMX/WinGet-AutoUpdate-Configurator.admx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/ADMX/WinGet-AutoUpdate-Configurator.admx -------------------------------------------------------------------------------- /ADMX/en-us/WinGet-AutoUpdate-Configurator.adml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/ADMX/en-us/WinGet-AutoUpdate-Configurator.adml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/LICENSE -------------------------------------------------------------------------------- /Modified/Winget-AutoUpdate/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Modified/Winget-AutoUpdate/icons/error.png -------------------------------------------------------------------------------- /Modified/Winget-AutoUpdate/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Modified/Winget-AutoUpdate/icons/info.png -------------------------------------------------------------------------------- /Modified/Winget-AutoUpdate/icons/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Modified/Winget-AutoUpdate/icons/success.png -------------------------------------------------------------------------------- /Modified/Winget-AutoUpdate/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Modified/Winget-AutoUpdate/icons/warning.png -------------------------------------------------------------------------------- /ProgramData/LastCommand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/ProgramData/LastCommand.txt -------------------------------------------------------------------------------- /ProgramData/mods/_Mods-Functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/ProgramData/mods/_Mods-Functions.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/README.md -------------------------------------------------------------------------------- /Refresh-WingetConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Refresh-WingetConfiguration.ps1 -------------------------------------------------------------------------------- /Sources/Policies/ADMX/WAU.admx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Policies/ADMX/WAU.admx -------------------------------------------------------------------------------- /Sources/Policies/ADMX/en-US/WAU.adml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Policies/ADMX/en-US/WAU.adml -------------------------------------------------------------------------------- /Sources/Policies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Policies/README.md -------------------------------------------------------------------------------- /Sources/Tools/Detection/winget-detect.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Tools/Detection/winget-detect.ps1 -------------------------------------------------------------------------------- /Sources/WAU/Winget-AutoUpdate-Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/WAU/Winget-AutoUpdate-Install.ps1 -------------------------------------------------------------------------------- /Sources/WAU/Winget-AutoUpdate/Version.txt: -------------------------------------------------------------------------------- 1 | 1.21.13 -------------------------------------------------------------------------------- /Sources/WAU/Winget-AutoUpdate/WAU-Policies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/WAU/Winget-AutoUpdate/WAU-Policies.ps1 -------------------------------------------------------------------------------- /Sources/WAU/Winget-AutoUpdate/functions/Get-ExcludedApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/WAU/Winget-AutoUpdate/functions/Get-ExcludedApps.ps1 -------------------------------------------------------------------------------- /Sources/WAU/Winget-AutoUpdate/functions/Get-IncludedApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/WAU/Winget-AutoUpdate/functions/Get-IncludedApps.ps1 -------------------------------------------------------------------------------- /Sources/WAU/Winget-AutoUpdate/functions/Get-WAUConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/WAU/Winget-AutoUpdate/functions/Get-WAUConfig.ps1 -------------------------------------------------------------------------------- /Sources/WAU/Winget-AutoUpdate/functions/Get-WingetCmd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/WAU/Winget-AutoUpdate/functions/Get-WingetCmd.ps1 -------------------------------------------------------------------------------- /Sources/WAU/Winget-AutoUpdate/functions/Get-WingetOutdatedApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/WAU/Winget-AutoUpdate/functions/Get-WingetOutdatedApps.ps1 -------------------------------------------------------------------------------- /Sources/WAU/Winget-AutoUpdate/functions/Install-Prerequisites.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/WAU/Winget-AutoUpdate/functions/Install-Prerequisites.ps1 -------------------------------------------------------------------------------- /Sources/WAU/Winget-AutoUpdate/functions/Invoke-DirProtect.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/WAU/Winget-AutoUpdate/functions/Invoke-DirProtect.ps1 -------------------------------------------------------------------------------- /Sources/WAU/Winget-AutoUpdate/functions/Invoke-LogRotation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/WAU/Winget-AutoUpdate/functions/Invoke-LogRotation.ps1 -------------------------------------------------------------------------------- /Sources/WAU/Winget-AutoUpdate/functions/Invoke-PostUpdateActions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/WAU/Winget-AutoUpdate/functions/Invoke-PostUpdateActions.ps1 -------------------------------------------------------------------------------- /Sources/WAU/Winget-AutoUpdate/functions/Update-WAU.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/WAU/Winget-AutoUpdate/functions/Update-WAU.ps1 -------------------------------------------------------------------------------- /Sources/WAU/Winget-AutoUpdate/mods/_AppID-template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/WAU/Winget-AutoUpdate/mods/_AppID-template.ps1 -------------------------------------------------------------------------------- /Sources/WAU/Winget-AutoUpdate/mods/_WAU-notinstalled-template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/WAU/Winget-AutoUpdate/mods/_WAU-notinstalled-template.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/ServiceUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/ServiceUI.exe -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/User-Run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/User-Run.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/WAU-Installer-GUI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/WAU-Installer-GUI.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/WAU-Notify.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/WAU-Notify.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/WAU-Policies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/WAU-Policies.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/Winget-Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/Winget-Install.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/Winget-Upgrade.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/Winget-Upgrade.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/config/WAU-MSI_Actions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/config/WAU-MSI_Actions.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/config/default_excluded_apps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/config/default_excluded_apps.txt -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Add-ScopeMachine.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Add-ScopeMachine.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Compare-SemVer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Compare-SemVer.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Confirm-Installation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Confirm-Installation.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Get-AZCopy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Get-AZCopy.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Get-AppInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Get-AppInfo.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Get-ExcludedApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Get-ExcludedApps.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Get-IncludedApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Get-IncludedApps.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Get-NotifLocale.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Get-NotifLocale.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Get-WAUAvailableVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Get-WAUAvailableVersion.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Get-WAUConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Get-WAUConfig.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Get-WingetCmd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Get-WingetCmd.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Get-WingetOutdatedApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Get-WingetOutdatedApps.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Get-WingetSystemApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Get-WingetSystemApps.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Install-Prerequisites.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Install-Prerequisites.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Invoke-LogRotation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Invoke-LogRotation.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Start-NotifTask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Start-NotifTask.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Test-ListPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Test-ListPath.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Test-Mods.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Test-Mods.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Test-ModsPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Test-ModsPath.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Test-Network.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Test-Network.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Test-PendingReboot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Test-PendingReboot.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Test-WAUMods.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Test-WAUMods.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Update-App.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Update-App.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Update-StoreApps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Update-StoreApps.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Update-WAU.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Update-WAU.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/functions/Write-ToLog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/functions/Write-ToLog.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/icons/error.png -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/icons/info.png -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/icons/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/icons/success.png -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/icons/warning.png -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/locale/cz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/locale/cz.xml -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/locale/de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/locale/de.xml -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/locale/en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/locale/en.xml -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/locale/es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/locale/es.xml -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/locale/fi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/locale/fi.xml -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/locale/fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/locale/fr.xml -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/locale/hu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/locale/hu.xml -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/locale/it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/locale/it.xml -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/locale/lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/locale/lv.xml -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/locale/nb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/locale/nb.xml -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/locale/nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/locale/nl.xml -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/locale/pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/locale/pl.xml -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/locale/pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/locale/pt.xml -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/locale/ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/locale/ru.xml -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/locale/sv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/locale/sv.xml -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/locale/uk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/locale/uk.xml -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/locale/zh-CHS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/locale/zh-CHS.xml -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/locale/zh-CHT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/locale/zh-CHT.xml -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/mods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/mods/README.md -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/mods/_AppID-template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/mods/_AppID-template.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/mods/_Mods-Functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/mods/_Mods-Functions.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/mods/_WAU-mods-postsys-template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/mods/_WAU-mods-postsys-template.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/mods/_WAU-mods-template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/mods/_WAU-mods-template.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/mods/_WAU-notinstalled-template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/mods/_WAU-notinstalled-template.ps1 -------------------------------------------------------------------------------- /Sources/Winget-AutoUpdate/mods/bins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Winget-AutoUpdate/mods/bins/README.md -------------------------------------------------------------------------------- /Sources/Wix/build.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Wix/build.wxs -------------------------------------------------------------------------------- /Sources/Wix/files/banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Wix/files/banner.bmp -------------------------------------------------------------------------------- /Sources/Wix/files/dialog.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Wix/files/dialog.bmp -------------------------------------------------------------------------------- /Sources/Wix/files/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/Sources/Wix/files/icon.ico -------------------------------------------------------------------------------- /WAUMSI/Add-ScopeMachine.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Add-ScopeMachine.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Compare-SemVer.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Compare-SemVer.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Confirm-Installation.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Confirm-Installation.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Get-AZCopy.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Get-AZCopy.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Get-AppInfo.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Get-AppInfo.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Get-ExcludedApps.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Get-ExcludedApps.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Get-IncludedApps.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Get-IncludedApps.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Get-NotifLocale.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Get-NotifLocale.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Get-WAUAvailableVersion.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Get-WAUAvailableVersion.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Get-WAUConfig.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Get-WAUConfig.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Get-WingetCmd.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Get-WingetCmd.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Get-WingetOutdatedApps.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Get-WingetOutdatedApps.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Get-WingetSystemApps.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Get-WingetSystemApps.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Install-Prerequisites.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Install-Prerequisites.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Invoke-LogRotation.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Invoke-LogRotation.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/ServiceUI.exe.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/ServiceUI.exe.sig -------------------------------------------------------------------------------- /WAUMSI/Start-NotifTask.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Start-NotifTask.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Test-ListPath.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Test-ListPath.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Test-Mods.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Test-Mods.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Test-ModsPath.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Test-ModsPath.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Test-Network.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Test-Network.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Test-PendingReboot.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Test-PendingReboot.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Test-WAUMods.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Test-WAUMods.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Update-App.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Update-App.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Update-StoreApps.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Update-StoreApps.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Update-WAU.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Update-WAU.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/User-Run.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/User-Run.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/WAU-Installer-GUI.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/WAU-Installer-GUI.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/WAU-MSI_Actions.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/WAU-MSI_Actions.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/WAU-Notify.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/WAU-Notify.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/WAU-Policies.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/WAU-Policies.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/WAU.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/WAU.msi -------------------------------------------------------------------------------- /WAUMSI/WAUaaS.mst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/WAUaaS.mst -------------------------------------------------------------------------------- /WAUMSI/Winget-Install.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Winget-Install.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Winget-Upgrade.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Winget-Upgrade.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/Write-ToLog.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/Write-ToLog.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/_AppID-template.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/_AppID-template.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/_Mods-Functions.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/_Mods-Functions.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/_WAU-mods-postsys-template.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/_WAU-mods-postsys-template.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/_WAU-mods-template.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/_WAU-mods-template.ps1.sig -------------------------------------------------------------------------------- /WAUMSI/_WAU-notinstalled-template.ps1.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WAUMSI/_WAU-notinstalled-template.ps1.sig -------------------------------------------------------------------------------- /WinGet-AutoUpdate-Configurator/Generic.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WinGet-AutoUpdate-Configurator/Generic.psm1 -------------------------------------------------------------------------------- /WinGet-AutoUpdate-Configurator/HGO-CodeSigning-2.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WinGet-AutoUpdate-Configurator/HGO-CodeSigning-2.cer -------------------------------------------------------------------------------- /WinGet-AutoUpdate-Configurator/HGO-CodeSigning-TS.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WinGet-AutoUpdate-Configurator/HGO-CodeSigning-TS.cer -------------------------------------------------------------------------------- /WinGet-AutoUpdate-Configurator/HGO-CodeSigning.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WinGet-AutoUpdate-Configurator/HGO-CodeSigning.cer -------------------------------------------------------------------------------- /WinGet-AutoUpdate-Configurator/UpdateTask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WinGet-AutoUpdate-Configurator/UpdateTask.xml -------------------------------------------------------------------------------- /WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-arm64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-arm64.exe -------------------------------------------------------------------------------- /WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-arm64.exe.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-arm64.exe.cat -------------------------------------------------------------------------------- /WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-arm64.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-arm64.exe.config -------------------------------------------------------------------------------- /WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-arm64.exe.wrunconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-arm64.exe.wrunconfig -------------------------------------------------------------------------------- /WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-x64.exe -------------------------------------------------------------------------------- /WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-x64.exe.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-x64.exe.cat -------------------------------------------------------------------------------- /WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-x64.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-x64.exe.config -------------------------------------------------------------------------------- /WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-x64.exe.wrunconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-x64.exe.wrunconfig -------------------------------------------------------------------------------- /WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-x86.exe -------------------------------------------------------------------------------- /WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-x86.exe.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-x86.exe.cat -------------------------------------------------------------------------------- /WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-x86.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-x86.exe.config -------------------------------------------------------------------------------- /WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-x86.exe.wrunconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WinGet-AutoUpdate-Configurator/Winget-AutoUpdate-x86.exe.wrunconfig -------------------------------------------------------------------------------- /WinGet-AutoUpdate-Configurator/_AppID-template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/WinGet-AutoUpdate-Configurator/_AppID-template.ps1 -------------------------------------------------------------------------------- /docs/img/teaser1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weatherlights/Winget-AutoUpdate-Intune/HEAD/docs/img/teaser1.png --------------------------------------------------------------------------------