2021-01-13 06:02:37 +00:00
|
|
|
[CmdletBinding()]param(
|
|
|
|
[string[]]$Remotes = 'All',
|
2021-05-08 21:46:33 +00:00
|
|
|
[switch]$RawOutput,
|
|
|
|
[switch]$PassThruOnly
|
2021-01-13 06:02:37 +00:00
|
|
|
)
|
|
|
|
|
2021-05-10 03:45:23 +00:00
|
|
|
Invoke-ViaAnsible -Command "Update-OSz -Mode Auto" -Remotes:$($Remotes.ToLower()) -RawOutput:$RawOutput
|