The goal is to create a development and media consumption friendly environment in Windows 10. To achieve this, apart from installing various apps, the WSL will be also activated.
-
Before we could run the ansible scripts from WSL, we need to enable the WSL, and enable the winrm access to the system.
- Run the
Setup-All.ps1powershell script, which will download the required scripts. From an elevated powershell runNote: it will restart the system.\Setup-All.ps1 - After the restart, run the ubuntu shell and setup a user
user: dorwi password: secure
- Run the
-
Now we can clone the repo. Run from WSL:
cd ~ git clone https://github.com/dorwi/windows-setup.git
-
Install ansible
sudo apt-add-repository ppa:ansible/ansible sudo apt-get update -y sudo apt-get upgrade -y sudo apt-get install ansible -y
-
Run the playbooks
cd windows-setup ansible-galaxy install -r requirements.yml ansible-playbook -i ,localhost ub-devel.yml ansible-playbook -i inventory.ini win-devel.yml