Ansible 2.3 introduces a number of enhancements to the win_service module. If you are using Ansible to automate the installation of FireDaemon Pro services or FireDaemon Zero, you will need to ensure that you set the desktop_interact module parameter to true should you want to see the GUI components of your FireDaemon Pro service or Zero product on Session 0 itself. The default for desktop_interact is false and hence, your application will not be visible on Session 0.


For example, to configure the UI0Detect service to run interactively,  use the following YAML in your Ansible Playbook:


- name: set Interactive Services Detection Service so Session 0 Viewer can control it properly

win_service:

    name: UI0Detect

    start_mode: manual

    state: stopped

    desktop_interact: true