Skip to content

Instantly share code, notes, and snippets.

@m5lil
Created January 16, 2018 16:40
Show Gist options
  • Save m5lil/67465f17f744411c53cdc8d737b1ec4f to your computer and use it in GitHub Desktop.
Save m5lil/67465f17f744411c53cdc8d737b1ec4f to your computer and use it in GitHub Desktop.
# Configure Windows
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar
Update-ExecutionPolicy Unrestricted
cinst -y Microsoft-Hyper-V-All -source windowsFeatures
# Packages
cinst -y cmder -pre
cinst -y hyper
cinst -y Gow
## Node, npm
cinst -y nodejs.install
## Git
cinst -y git.install
cinst -y poshgit
cinst -y git-credential-winstore
cinst -y github
## Node, npm
cinst -y nodejs.install
npm install -g npm-windows-upgrade
## Editors
cinst -y visualstudiocode
## Basics
cinst -y vlc
# cinst -y GoogleChrome
cinst -y 7zip.install
cinst -y sysinternals
cinst -y DotNet3.5
# cinst -y DotNet4.0 -- not needed on windows 8
# cinst -y DotNet4.5 -- not needed on windows 10
# cinst -y PowerShell -- not needed on windows 10
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