Last active
April 2, 2020 21:56
-
-
Save a-metta/98b0ea7589d9b5b5219248ae97b51bd4 to your computer and use it in GitHub Desktop.
Chocolatey packages installs
This file contains 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
# Configure Windows | |
#Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar | |
#Update-ExecutionPolicy Unrestricted -Scope CurrentUser | |
#cinst -y Microsoft-Hyper-V-All -source windowsFeatures | |
# one liner | |
cinst -y git.install poshgit gitkraken firacode-ttf zeal golang curl wget putty php python python2 vlc filezilla opera calibre fiddler audacity greenshot 7zip.install putty.install ccleaner itunes dropbox gimp inkscape sysinternals | |
# Packages | |
cinst -y hyper | |
cinst -y microsoft-windows-terminal | |
cinst -y azure-cli | |
cinst -y awscli | |
cinst -y heroku-cli | |
## Node, npm | |
cinst -y nodejs.install | |
## Git | |
cinst -y git.install | |
cinst -y poshgit | |
## Node, npm | |
cinst -y nodejs.install | |
npm install -g npm-windows-upgrade | |
## Editors | |
cinst -y vscode | |
## Ruby, Go, Python | |
cinst -y golang | |
cinst -y curl | |
cinst -y wget | |
cinst -y putty | |
cinst -y php | |
cinst -y python | |
cinst -y python2 | |
if (Test-PendingReboot) { Invoke-Reboot } | |
## Basics | |
cinst -y vlc | |
cinst -y filezilla | |
cinst -y opera | |
cinst -y calibre | |
cinst -y fiddler | |
cinst -y audacity | |
cinst -y greenshot | |
#cinst -y GoogleChrome | |
cinst -y 7zip.install | |
cinst -y putty.install | |
cinst -y ccleaner | |
cinst -y itunes | |
cinst -y dropbox | |
cinst -y gimp | |
cinst -y inkscape | |
cinst -y sysinternals | |
if (Test-PendingReboot) { Invoke-Reboot } | |
# Pinning Things | |
#Install-ChocolateyPinnedTaskBarItem "$env:programfiles\Google\Chrome\Application\chrome.exe" | |
# Let's get Updates, too | |
#Install-WindowsUpdate -acceptEula |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment