|
@echo off |
|
chcp 65001 >nul |
|
echo ======================================== |
|
echo Automatic Installer - Post-Format (Kaic) |
|
echo ======================================== |
|
echo. |
|
|
|
::------------------------------ |
|
:: Programas principais |
|
::------------------------------ |
|
|
|
echo Instalando navegadores e produtividade... |
|
|
|
:: Google Chrome |
|
winget install --id=Google.Chrome -e --silent |
|
|
|
:: Google Drive Desktop |
|
winget install --id=Google.GoogleDrive -e --silent |
|
|
|
:: Adobe Acrobat Reader |
|
winget install --id=Adobe.Acrobat.Reader.64-bit -e --silent |
|
|
|
:: Bitwarden |
|
winget install --id=Bitwarden.Bitwarden -e --silent |
|
|
|
:: Notion |
|
winget install --id=Notion.Notion -e --silent |
|
|
|
:: Notion Calendar |
|
winget install --id=Notion.NotionCalendar -e --silent |
|
|
|
:: Obsidian |
|
winget install --id=Obsidian.Obsidian -e --silent |
|
|
|
:: Thunderbird |
|
winget install --id=Mozilla.Thunderbird -e --silent |
|
|
|
:: Spotify |
|
winget install --id=Spotify.Spotify -e --silent |
|
|
|
:: Discord |
|
winget install --id=Discord.Discord -e --silent |
|
|
|
:: Signal |
|
winget install --id=OpenWhisperSystems.Signal -e --silent |
|
|
|
|
|
echo. |
|
echo Instalando jogos e ferramentas relacionadas... |
|
|
|
:: Steam |
|
winget install --id=Valve.Steam -e --silent |
|
|
|
:: Blitz (LoL) |
|
winget install --id=Blitz.Blitz -e --silent |
|
|
|
:: qBittorrent (substitui Transmission) |
|
winget install --id=qBittorrent.qBittorrent -e --silent |
|
|
|
:: VirtualDJ |
|
winget install --id=AtomixProductions.VirtualDJ -e --silent |
|
|
|
|
|
echo. |
|
echo Instalando ferramentas de sistema... |
|
|
|
:: CPU-Z |
|
winget install --id=CPUID.CPU-Z -e --silent |
|
|
|
:: BleachBit |
|
winget install --id=BleachBit.BleachBit -e --silent |
|
|
|
:: VLC |
|
winget install --id=VideoLAN.VLC -e --silent |
|
|
|
:: ClamWin Antivirus |
|
winget install --id=ClamWin.ClamWin -e --silent |
|
|
|
:: Rainmeter |
|
winget install --id=rainmeter.rainmeter -e --silent |
|
|
|
:: Git (para clonar halflife-monitoring) |
|
winget install --id=Git.Git -e --silent |
|
|
|
|
|
echo. |
|
echo Instalando stack Proton... |
|
|
|
:: Proton VPN |
|
winget install --id=Proton.ProtonVPN -e --silent |
|
|
|
:: Proton Mail Bridge |
|
winget install --id=Proton.ProtonMailBridge -e --silent |
|
|
|
:: Proton Drive |
|
winget install --id=Proton.ProtonDrive -e --silent |
|
|
|
|
|
echo. |
|
echo Instalando runtimes pra jogos e apps... |
|
|
|
:: Visual C++ 2015-2022 Redistributable (x64) |
|
winget install --id=Microsoft.VCRedist.2015+.x64 -e --silent |
|
|
|
:: .NET Desktop Runtime 8 |
|
winget install --id=Microsoft.DotNet.DesktopRuntime.8 -e --silent |
|
|
|
|
|
echo. |
|
echo ======================================== |
|
echo Programas que devem ser instalados manualmente: |
|
echo ======================================== |
|
|
|
echo RGB Fusion (Gigabyte RGB): utilitario de RGB da placa-mae/placa de video |
|
echo JBL Quantum Engine: software do fone JBL Quantum |
|
echo NVIDIA App / GeForce Experience |
|
echo Riot Client / League of Legends |
|
echo Aplicativo Itaú Desktop |
|
echo Wallpaper Engine (via Steam) |
|
echo Hydra, Antigravity e demais jogos/programas especificos |
|
echo. |
|
|
|
|
|
echo ======================================== |
|
echo Clonando halflife-monitoring (Rainmeter) |
|
echo ======================================== |
|
|
|
set "RM_SKINS=%USERPROFILE%\Documents\Rainmeter\Skins" |
|
|
|
if exist "%RM_SKINS%" ( |
|
echo Pasta de skins do Rainmeter encontrada em: |
|
echo %RM_SKINS% |
|
pushd "%RM_SKINS%" |
|
if not exist "halflife-monitoring" ( |
|
echo Clonando repositorio halflife-monitoring... |
|
git clone https://github.com/kaic/halflife-monitoring.git |
|
) else ( |
|
echo A pasta "halflife-monitoring" ja existe. Pulando clone. |
|
) |
|
popd |
|
) else ( |
|
echo Nao encontrei a pasta de skins do Rainmeter. |
|
echo Depois de abrir o Rainmeter pela primeira vez, crie a pasta e clone: |
|
echo git clone https://github.com/kaic/halflife-monitoring.git "%RM_SKINS%\halflife-monitoring" |
|
) |
|
|
|
|
|
echo. |
|
echo ======================================== |
|
echo Aplicando configuracoes de Windows |
|
echo ======================================== |
|
|
|
:: Mostrar extensões de arquivo conhecidas |
|
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^ |
|
/v HideFileExt /t REG_DWORD /d 0 /f |
|
|
|
:: Mostrar arquivos ocultos |
|
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^ |
|
/v Hidden /t REG_DWORD /d 1 /f |
|
|
|
:: Mostrar unidades vazias |
|
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" ^ |
|
/v HideDrivesWithNoMedia /t REG_DWORD /d 0 /f |
|
|
|
:: Remover "Objetos 3D" do Explorer |
|
reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}" /f 2>nul |
|
|
|
:: Desativar Game Bar / gravação em segundo plano |
|
reg add "HKCU\System\GameConfigStore" /v GameDVR_Enabled /t REG_DWORD /d 0 /f |
|
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\GameDVR" /v AppCaptureEnabled /t REG_DWORD /d 0 /f |
|
|
|
:: Desativar hibernação (libera espaço e agiliza reboot) |
|
powercfg -h off |
|
|
|
:: Ativar plano de energia de Alto Desempenho |
|
powercfg /S SCHEME_MIN |
|
|
|
:: Tentar habilitar Ultimate Performance (se existir) |
|
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61 >nul 2>&1 |
|
|
|
echo. |
|
echo ======================================== |
|
echo Opcional: desativar Windows Update (SERVICO) |
|
echo ======================================== |
|
echo Isso pode melhorar estabilidade de performance, mas voce deixa de receber |
|
echo updates automaticamente. Ajuste depois se quiser. |
|
|
|
:: Desativar Windows Update |
|
sc stop wuauserv >nul 2>&1 |
|
sc config wuauserv start= disabled >nul 2>&1 |
|
|
|
|
|
echo. |
|
echo ======================================== |
|
echo Fim do script |
|
echo ======================================== |
|
echo Reinicie o PC depois que tudo terminar para garantir que: |
|
echo - PATH do Git e outros programas estejam OK |
|
echo - Planos de energia estejam ativos |
|
echo. |
|
pause |