This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run these commands before run the playbook: | |
# $ xcode-select --install | |
# $ sudo easy_install pip | |
# $ sudo pip install ansible --quiet | |
# $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# to update ansible use: sudo pip install ansible --upgrade | |
# Then, run the playbook: | |
# $ curl https://gist.githubusercontent.com/V1ct0rV/def163b7d97408979afc8247c3699cc9/raw/ansible-macos-homebrew-packages.yml -o playbook.yml | |
# $ ansible-playbook playbook.yml | |
--- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Before running this script run: | |
# Set-ExecutionPolicy RemoteSigned | |
# on an elevated powershell console | |
# Chocolatey | |
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
# Boxstarter | |
iex ((New-Object System.Net.WebClient).DownloadString('https://boxstarter.org/bootstrapper.ps1')); get-boxstarter -Force |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This script is based on jessfraz boxstarter.ps1 script https://gist.github.com/jessfraz/7c319b046daa101a4aaef937a20ff41f | |
# and NickCraver Windows10-Setup.ps1 script https://gist.github.com/NickCraver/7ebf9efbfd0c3eab72e9 | |
# all the configurations here are my personal preferences, use it at your own discretion. | |
# the configurations here are meant to be run by boxstarter, and some will not work when running the ps1 by itself | |
################## | |
# Temporal: Disable UAC | |
################## | |
Disable-UAC |