install chrome-msi with ansible

hi,
im am not able to deploy google chrome msi via ansible on wondows hosts. using the exe-file is working ok, but with some side effects.
was anyone able to install the chrome-msi via win_package?

tried msi with:

  • name: install file
    win_package:
    path: C:\temp\GoogleChromeStandaloneEnterprise64.msi
    arguments: /q /l
    state: present

(also tried arguments: /quiet /qn /i and some combinations of that)

successful installed exe with:

  • name: install file
    win_package:
    path: C:\temp\ChromeStandaloneSetup64.exe
    arguments: /silent /install
    state: present

kind regards,
andre