- name: download icon to remote host win_copy: src: "{{ item.icon }}" dest: '{{ ansible_env.SystemRoot }}\{{ item.icon }}' force: yes - name: create shortcut win_shortcut: description: "{{ item.description | d(omit) }}" dest: '{{ ansible_env.PUBLIC }}\Desktop\{{ item.name }}.lnk' icon: '{{ ansible_env.SystemRoot }}\{{ item.icon }}' src: "{{ item.dest }}" state: present changed_when: no