summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/win_script/files/test_script_with_args.ps1
blob: 01bb37f5d7882f57ef87a29ecd5fa44977a447c2 (plain)
1
2
3
4
5
6
# Test script to make sure the Ansible script module works when arguments are
# passed to the script.

foreach ($i in $args) {
    Write-Host $i;
}