2021-01-13 06:02:37 +00:00
|
|
|
[CmdletBinding()]param(
|
|
|
|
[string[]]$Remotes = 'All',
|
|
|
|
[switch]$OneLine
|
2020-11-01 04:55:38 +00:00
|
|
|
|
2021-01-13 06:02:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
Invoke-ViaAnsible -Command "Update-OSz -Mode Auto" -Remotes:$($Remotes.ToLower()) -OneLine:$OneLine
|