You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/win_exec_wrapper/library/test_all_options.ps1

13 lines
305 B
PowerShell

#!powershell
#Requires -Module Ansible.ModuleUtils.Legacy
#Requires -Module Ansible.ModuleUtils.SID
#Requires -Version 3.0
#AnsibleRequires -OSVersion 6
#AnsibleRequires -Become
$output = &whoami.exe
$sid = Convert-ToSID -account_name $output.Trim()
Exit-Json -obj @{ output = $sid; changed = $false }