mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 05:10:22 -07:00
win_psexec: Change default for -nobanner (#24739)
* win_psexec: Change default for -nobanner * Update documentation too
This commit is contained in:
parent
4fb283a4e3
commit
6b7d669a2b
2 changed files with 3 additions and 2 deletions
|
@ -30,7 +30,7 @@ $username = Get-AnsibleParam -obj $params -name "username" -type "str"
|
|||
$password = Get-AnsibleParam -obj $params -name "password" -type "str"
|
||||
$chdir = Get-AnsibleParam -obj $params -name "chdir" -type "path"
|
||||
$wait = Get-AnsibleParam -obj $params -name "wait" -type "bool" -default $true
|
||||
$nobanner = Get-AnsibleParam -obj $params -name "nobanner" -type "bool" -default $true
|
||||
$nobanner = Get-AnsibleParam -obj $params -name "nobanner" -type "bool" -default $false
|
||||
$noprofile = Get-AnsibleParam -obj $params -name "noprofile" -type "bool" -default $false
|
||||
$elevated = Get-AnsibleParam -obj $params -name "elevated" -type "bool" -default $false
|
||||
$limited = Get-AnsibleParam -obj $params -name "limited" -type "bool" -default $false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue