Skip to content

Instantly share code, notes, and snippets.

@RyKilleen
Last active September 8, 2022 01:16
Show Gist options
  • Save RyKilleen/65f914f274fcfcbc8f6f1ce23f428e55 to your computer and use it in GitHub Desktop.
Save RyKilleen/65f914f274fcfcbc8f6f1ce23f428e55 to your computer and use it in GitHub Desktop.
Choco Install / System setup
choco install choco.config
#### System Settings
$key = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced'
Set-ItemProperty $key Hidden 1 # Show Hidden Files
Set-ItemProperty $key HideFileExt 0 # Don't Hide File Extensions
Set-ItemProperty $key ShowSuperHidden 1 # Show Hidden System Files
Stop-Process -processname explorer # Reset Explorer
#### Other
fnm install --lts
@SeanKilleen
Copy link

@RyKilleen FYI if you store the choco packages in packages.config format, you can run choco install packages.config and get them all in one shot. I've got a setup using this method now; been meaning to blog about that, woops.

@SeanKilleen
Copy link

Love the idea of publicizing the setup scripts by the way!

@RyKilleen
Copy link
Author

@SeanKilleen Great tip, I'll have to look into that! I like the idea of keeping it all in one file so I can post a gist of it for now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment