ansible/test/integration/targets/win_package/handlers/main.yml
Jordan Borean 446a0c1b08
win_package - Refactor with msp, appx support (#66931)
* win_package - Refactor with msp, appx support

* Added msi test for ALLUSERS

* Added some msix tests, refactored tests

* Added remaining msix tests

* Enable msix sideloading for tests

* Added remaining exe path tests

* Added basic msp tests

* Remove url options now the util no longer has them

* Fix file version check for older Windows hosts

* Remove no_proxy ansible-test setting

* Use same mechanism of become to copy the file with explicit creds
2020-02-13 16:44:19 +10:00

15 lines
407 B
YAML

---
- 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