Skip to content

Instantly share code, notes, and snippets.

@PRElias
Last active January 3, 2019 00:03
Show Gist options
  • Save PRElias/499c0a30bd42acb10269f403d78188ab to your computer and use it in GitHub Desktop.
Save PRElias/499c0a30bd42acb10269f403d78188ab to your computer and use it in GitHub Desktop.
Script de instalação ou upgrade de softwares padrão
# Configurando
Set-ExecutionPolicy -ExecutionPolicy Bypass -Force
# Instalando Chocolatey
Invoke-Expression ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
# Recarregando PATH variables
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
# Instalações fundamentais
choco upgrade jre8 -y
choco upgrade 7zip -y
choco upgrade directx -y
choco upgrade vcredist2008 -y
choco upgrade vcredist2010 -y
choco upgrade vcredist2013 -y
choco upgrade vcredist2015 -y
choco upgrade googlechrome -y
choco upgrade notepadplusplus.install -y
choco upgrade treesizefree -y
choco upgrade irfanview -y
choco upgrade irfanviewplugins -y
choco upgrade greenshot -y
choco upgrade k-litecodecpackfull -y
choco upgrade hwinfo -y
#choco upgrade hwinfo.portable -y
choco upgrade audacity -y
#choco upgrade calibre -y
choco upgrade belarcadvisor -y
choco upgrade usblogview -y
# Instalações DEV
choco upgrade nodejs.install -y
choco upgrade git -y
choco upgrade vscode -y
choco upgrade dotnetcore-sdk -y
choco upgrade sql-server-management-studio -y
# Descomentar linha abaixo para fazer reinicialização automática
# Restart-Computer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment