raw: c:\windows\system32\cmd.exe /C "C:\\Program Files\\Kaspersky Lab\\Network Agent\\klmover.exe -address 172.16.1.1"raw: "C:\\Program Files\\Kaspersky Lab\\Network Agent\\klmover.exe" -address 171.16.1.1
However, if you are using ansible 2.2 use win_command (or win_shell) modules instead of 'raw'. Try something like this (which I think is easier to read than the others above).
win_command: klmover -address 172.16.1.1
args:
chdir: C:\Program Files\Kaspersky Lab\Network Agent\
Would it be possible to switch things around and connect as Administrator, or a user with local admin permissions?
Jon