Ansible/playbook/windows/choco/installVSCode.yml
James Tombleson e0b95e9889 Packages can be installed on windows
Found out Brave has a bug in the installer but VSCode works!
2019-04-08 08:39:18 -07:00

13 lines
219 B
YAML

- name: Install Brave Browser from Choco
hosts: windows
tasks:
- name: Install Package
win_chocolatey:
name: vscode
state: present
register: output
- debug: msg="{{ output }}"