PowerShell_Scripts/ansible/Update-ViaAnsible.ps1

8 lines
213 B
PowerShell

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