PowerShell_Scripts/ansible/Update-ViaAnsible.ps1

7 lines
186 B
PowerShell

[CmdletBinding()]param(
[string[]]$Remotes = 'All',
[switch]$RawOutput
)
Invoke-ViaAnsible -Command "Update-OSz -Mode Auto" -Remotes:$($Remotes.ToLower()) -RawOutput:$RawOutput