
Using AnsibleOutput type, default type data will output 4 last lines, while all lines would be available if needed.
7 lines
213 B
PowerShell
7 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
|