- name: install LibreOffice chocolatey.chocolatey.win_chocolatey: name: libreoffice state: latest - name: define LibreOffice paths set_fact: libreoffice_reg_paths: - org.openoffice.Office.Common\Save\Document\WarnAlienFormat - org.openoffice.Office.Common\Misc\ShowTipOfTheDay - org.openoffice.Office.Common\Misc\FirstRun - org.openoffice.Office.Common\Misc\CrashReport - org.openoffice.Office.Common\Misc\CollectUsageInformation - org.openoffice.Office.UI\Infobar\GetInvolved - org.openoffice.Office.UI\Infobar\Donate - org.openoffice.Office.UI\Infobar\WhatsNew - name: create LibreOffice policies win_regedit: path: "HKLM:\\SOFTWARE\\Policies\\LibreOffice\\{{ item }}" name: "Value" type: string data: "false" loop: "{{ libreoffice_reg_paths }}" - name: finalize LibreOffice policies win_regedit: path: "HKLM:\\SOFTWARE\\Policies\\LibreOffice\\{{ item }}" name: "Final" type: dword data: 1 loop: "{{ libreoffice_reg_paths }}"