Powershell script from Ansible Playbook

I have .psl file i want to run that file on Ansible nodes ,So when i try to invoke the .psl file using adhoc command : ansible win1 -m win_command -a “powershell.exe -File C:\Sample\tomeescript.ps1” , It works fine
When i try to do the same with win_command module ,its failing

I have .psl file i want to run that file on Ansible nodes ,So when i try to invoke the .psl file using adhoc command :
*ansible win1 -m win_command -a "powershell.exe -File C:\Sample\tomeescript.ps1" , *It works fine
When i try to do the same with win_command module ,its failing
---
- hosts:win1
tasks:
- name : run psl
win_command: powershell.exe -
args:
chdir: C:\Sample\tomeescript.ps1

How to run the powershell script using playbook . I am not sure what mistake i did in the playbook

Excuse me, but the name of the script certainly doesn't belong into the chdir parameter.

Regards
          Racke