Skip to content

Instantly share code, notes, and snippets.

@demiters
Last active August 31, 2020 08:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save demiters/8da51d90bf0a2c5ba80aa4c0163dd51d to your computer and use it in GitHub Desktop.
Save demiters/8da51d90bf0a2c5ba80aa4c0163dd51d to your computer and use it in GitHub Desktop.
Ansible example playbook for installing Windows 10 software
---
- hosts: localhost
connection: local
tasks:
- name: Install Chocolatey packages
win_chocolatey:
name:
- vscode
- git
- nvm
- docker-desktop
- chromium
- slack
- dropbox
state: latest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment