Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.88 KB

README.md

File metadata and controls

34 lines (26 loc) · 1.88 KB

Prepare My Windows

IaC setup to install necessary packages and configure my Windows.

Windown Windown

Prerequisite

Install chocolatey package manager for Windows.

  • Goto https://chocolatey.org/install
  • Select Individual
  • Check policy in Powershell(Run as administrator)

    Run Get-ExecutionPolicy. If it returns Restricted, then run Set-ExecutionPolicy AllSigned or Set-ExecutionPolicy Bypass -Scope Process.

  • Install chocolatey
    Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))

Run

  • Download this Github repo zip file or download packages.config
  • Once chocolatey is installed, open powershell(with run as administrator)
    # Download and extract Github repo
    PS C:\Users\veere\Downloads> cd prepare-my-windows-main
    PS C:\Users\veere\Downloads\prepare-my-windows-main> choco install packages.config -y

How to create custom script

For MacOS and Ubuntu