Uninstalling Houdini

Hi,

I’m trying to uninstall houdini 17.0 with Ansible, I’ve tried the following:

  • name: Uninstall Houdini 17.0.416
    hosts: all
    tasks:

  • name: uninstall houdini
    win_command: cmd.exe “C:\Program Files\Side Effects Software\Houdini 17.0.416\Uninstall Houdini.exe /S”

  • name: uninstall houdini 2.0
    win_package:
    path: C:\Program Files\Side Effects Software\Houdini 17.0.416\Uninstall Houdini.exe
    product_id: Houdini 17.0.416
    arguments: /S
    state: absent

This is the given verbose output:

TASK [uninstall houdini] ************************************************************************************************************
changed: [ws-001.MYDOMAIN.COM] => {
“changed”: true,
“cmd”: “cmd.exe "C:\\Program Files\\Side Effects Software\\Houdini 17.0.416\\Uninstall Houdini.exe /S"”,
“delta”: “0:00:00.320820”,
“end”: “2019-09-20 04:22:06.665368”,
“rc”: 0,
“start”: “2019-09-20 04:22:06.344548”,
“stderr”: “”,
“stderr_lines”: ,
“stdout”: “Microsoft Windows [Version 10.0.17763.292]\r\n(c) 2018 Microsoft Corporation. All rights reserved.\r\n\r\nC:\Users\admin>\r\nC:\Users\admin>”,
“stdout_lines”: [
“Microsoft Windows [Version 10.0.17763.292]”,
“(c) 2018 Microsoft Corporation. All rights reserved.”,
“”,
“C:\Users\admin>”,
“C:\Users\admin>”
]
}

TASK [uninstall houdini 2.0] ********************************************************************************************************
changed: [ws-001.MYDOMAIN.COM] => {
“changed”: true,
“exit_code”: 0,
“rc”: 0,
“reboot_required”: false,
“restart_required”: false
}
META: ran handlers
META: ran handlers

As you can see, both of these run, and return a zero exit code. However, neither way seems to ACTUALLY uninstall houdini. Has anyone been successful uninstalling houdini with ansible? Or does anyone have any ideas of what may be the issue or how to debug it?
Im using ansible version 2.7.10

Thanks