details
parent
4a798d02e4
commit
0363e21edb
|
@ -154,7 +154,7 @@ Specify the update frequency: Daily (Default), BiDaily, Weekly, BiWeekly, Monthl
|
||||||
**-UpdatesAtTime**
|
**-UpdatesAtTime**
|
||||||
Specify the time of the update interval execution time. Default 6AM. (From version 1.15.0).
|
Specify the time of the update interval execution time. Default 6AM. (From version 1.15.0).
|
||||||
|
|
||||||
**WAU_UserApproval**
|
**-UserApproval**
|
||||||
Specify if user approval is needed before updating apps
|
Specify if user approval is needed before updating apps
|
||||||
|
|
||||||
**-RunOnMetered**
|
**-RunOnMetered**
|
||||||
|
|
|
@ -67,6 +67,9 @@ Run WAU on metered connection. Default No.
|
||||||
.PARAMETER InstallUserContext
|
.PARAMETER InstallUserContext
|
||||||
Install WAU with system and user context executions
|
Install WAU with system and user context executions
|
||||||
|
|
||||||
|
.PARAMETER UserApproval
|
||||||
|
Specify if user approval is needed before updating apps
|
||||||
|
|
||||||
.PARAMETER BypassListForUsers
|
.PARAMETER BypassListForUsers
|
||||||
Configure WAU to bypass the Black/White list when run in user context
|
Configure WAU to bypass the Black/White list when run in user context
|
||||||
|
|
||||||
|
@ -374,7 +377,7 @@ function Install-WingetAutoUpdate {
|
||||||
if ($BypassListForUsers) {
|
if ($BypassListForUsers) {
|
||||||
New-ItemProperty $regPath -Name WAU_BypassListForUsers -Value 1 -PropertyType DWord -Force | Out-Null
|
New-ItemProperty $regPath -Name WAU_BypassListForUsers -Value 1 -PropertyType DWord -Force | Out-Null
|
||||||
}
|
}
|
||||||
if ($WAU_UserApproval) {
|
if ($UserApproval) {
|
||||||
New-ItemProperty $regPath -Name WAU_UserApproval -Value 1 -PropertyType DWord -Force | Out-Null
|
New-ItemProperty $regPath -Name WAU_UserApproval -Value 1 -PropertyType DWord -Force | Out-Null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue