mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
8527013fbe
* supports pipelining for faster execution * supports become (runas), creates interactive subsession under WinRM batch logon * supports usage of arbitrary module_utils files * modular exec wrapper payload supports easier extension * integrates async wrapper behavior for pipelined/become'd async * module_utils are loaded as true Powershell modules, no more runtime modifications to module code
6 lines
103 B
PowerShell
6 lines
103 B
PowerShell
Param(
|
|
[bool]$boolvariable
|
|
)
|
|
|
|
Write-Output $boolvariable.GetType().FullName
|
|
Write-Output $boolvariable
|