Skip to content

Instantly share code, notes, and snippets.

@SvitlanaShepitsena
Last active February 13, 2016 20:59
Show Gist options
  • Save SvitlanaShepitsena/428efede8723aabb09af to your computer and use it in GitHub Desktop.
Save SvitlanaShepitsena/428efede8723aabb09af to your computer and use it in GitHub Desktop.
$Boxstarter.NoPassword=$true # Is this a machine with no login password?
Disable-UAC
Update-ExecutionPolicy Unrestricted # Allow running PowerShell scripts
try {
choco -y install visualstudio2015community
choco install windows-sdk-10.0
if (Test-PendingReboot) { Invoke-Reboot }
Write-ChocolateySuccess 'Done'
} catch {
Write-ChocolateyFailure 'Failed' $($_.Exception.Message)
throw
}
choco install nodejs.install
choco install -y VisualStudioCode
choco install sysinternals
cinst cyberduck
cinst flashplayerplugin
cinst powershell
cinst gamebooster
cinst javaruntime
cinst jre8
cinst mongodb
cinst paint.net
cinst reflect-free
cinst teamviewer
cinst winrar
cinst lastpass
cinst dropbox -y
cinst sublimetext3
New-Item -ItemType Directory -Path "$env:appdata\Sublime Text 3\Installed Packages"
New-Item -ItemType Directory -Path "$env:appdata\Sublime Text 3\Packages\User"
Invoke-WebRequest "https://sublime.wbond.net/Package%20Control.sublime-package" -OutFile "$env:appdata\Sublime Text 3\Installed Packages\Package Control.sublime-package"
Invoke-WebRequest "https://gist.githubusercontent.com/SvitlanaShepitsena/6b1c6a1590f277738860/raw/e4ba2f4875e76a145457dbe23458c5998434e505/installed-packages -OutFile "$env:appdata\Sublime Text 3\Packages\User\Package Control.sublime-settings"
Invoke-WebRequest "https://gist.githubusercontent.com/SvitlanaShepitsena/a03b0df03075c5e0a5f6/raw/12d067f637303a966dc6d94dd1482dc48154877a/sublime-settings -OutFile "$env:appdata\Sublime Text 3\Packages\User\Default (Windows).sublime-keymap"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment