Skip to content

Instantly share code, notes, and snippets.

@AshFlaw
Last active March 20, 2024 19:59
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AshFlaw/78d4be822a9746b700ba02c6b054ecef to your computer and use it in GitHub Desktop.
Save AshFlaw/78d4be822a9746b700ba02c6b054ecef to your computer and use it in GitHub Desktop.
Install Chocolatey with PowerShell and enable global automatic install confirmations.
Set-ExecutionPolicy Unrestricted
# Install Chocolatey
Invoke-WebRequest https://chocolatey.org/install.ps1 -UseBasicParsing | Invoke-Expression
# Enable Global confirmation (auto accept any prompts)
choco feature enable -n=allowGlobalConfirmation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment