ansible/test/integration/targets/win_package/handlers/main.yml

16 lines
407 B
YAML
Raw Normal View History

---
- name: remove trusted root cert
win_certificate_store:
thumbprint: '{{ test_win_package_msix_packages.thumbprint }}'
store_location: LocalMachine
store_name: Root
state: absent
- name: remove sideloading mode for msix
win_regedit:
path: HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock
name: AllowAllTrustedApps
data: 0
type: dword
state: present