I recently started using Ansible to control Windows and I'm have some trouble with the StartProcess command.
On a regular Powershell terminal I can open a new shell with this command:
StartProcess powershell
However this task in Ansible does not have that result:
- name: Start powershell
raw: 'StartProcess powershell'
Is Ansible incapable of spawning new windows in this way?