Last active
January 3, 2020 19:33
-
-
Save kbrowns/3a7284dc626be618cd6eca48c7d31f71 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| $ErrorActionPreference = 'Stop' | |
| # Prevent needing -y on all commands | |
| choco feature enable -n=allowGlobalConfirmation | |
| choco source add -n=csg -s "http://artifactory.csgicorp.com/artifactory/api/nuget/csg-chocolatey" | |
| Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
| Set-TaskbarOptions -Size Large -Combine Full -UnLock | |
| Disable-GameBarTips | |
| Disable-BingSearch | |
| Disable-InternetExplorerESC | |
| Set-CornerNavigationOptions -EnableUsePowerShellOnWinX | |
| choco upgrade googlechrome | |
| choco upgrade 7zip.install | |
| choco upgrade notepad2 | |
| choco upgrade visualstudiocode | |
| choco upgrade bingdesktop | |
| choco upgrade awscli | |
| choco upgrade console2 | |
| choco upgrade 1password | |
| choco upgrade dropbox | |
| choco upgrade evernote | |
| choco upgrade fiddler4 | |
| choco upgrade git | |
| choco upgrade graphviz | |
| choco upgrade hipchat | |
| choco upgrade jdk8 | |
| choco upgrade launchy | |
| choco upgrade notepadplusplus | |
| choco upgrade paint.net | |
| choco upgrade tortoisesvn | |
| choco upgrade virtualbox | |
| choco upgrade vagrant | |
| choco upgrade vcredist2010 | |
| choco upgrade microsoft-teams | |
| # .net | |
| #choco upgrade csg-dotnet47 | |
| #choco upgrade csg-dotnet47-devpack | |
| #choco upgrade csg-wixtoolset | |
| #choco upgrade dotPeek | |
| #choco upgrade resharper-platform | |
| # csg dev tools - https://confluence.csgicorp.com/display/SCM/CSGScmDevTools+and+Chocolatey | |
| iex ((New-Object System.Net.WebClient).DownloadString('http://scm.csgicorp.com/BuildHistory/api/modules/SCM/versions/latest/builds/cs/artifacts/install_csgscmdevtools.ps1')) | |
| $o = new-object -com shell.application | |
| $quickAccessDirs = @('c:\Users\brok02\_code', 'c:\Temp') | |
| foreach($quickAccessDir in $quickAccessDirs) { | |
| New-Item -ItemType Directory -Force -Path "$quickAccessDir" | Out-Null | |
| $o.Namespace($quickAccessDir).Self.InvokeVerb("pintohome") | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment