# Ansible Workshop for Windows http://tiny.cc/ykh16july2020 Workshop: http://8ec1.rhdemo.io/ Exercise: https://ansible.github.io/workshops/exercises/ansible_windows/ Presentation: https://ansible.github.io/workshops/decks/ansible_windows.pdf install_iis.yml <pre> --- - name: install the iis web service hosts: windows tasks: - name: install iis win_feature: name: Web-Server state: present - name: start iis service win_service: name: W3Svc state: started - name: Create website index.html win_copy: content: "{{ iis_test_message }}" dest: C:\Inetpub\wwwroot\index.html - name: Show website address debug: msg: http://{{ ansible_host }} </pre>
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up