enhanced list©
This commit is contained in:
parent
6e47599cba
commit
c99da9ba46
1 changed files with 28 additions and 42 deletions
|
@ -39,52 +39,38 @@ REG ADD "HKEY_CURRENT_USER\Control Panel\Accessibility\StickyKeys" /v Flags /t R
|
|||
REG ADD "HKEY_CURRENT_USER\Keyboard Layout\toggle" /v "Hotkey" /t REG_SZ /d 1 /f
|
||||
REG ADD "HKEY_CURRENT_USER\Keyboard Layout\toggle" /v "Language Hotkey" /t REG_SZ /d 2 /f
|
||||
|
||||
:: === Application downloads ==
|
||||
:: === WinGet ==
|
||||
:: Auto accept ToT
|
||||
ECHO Y | winget list >NUL
|
||||
SET "pm=winget install -he"
|
||||
|
||||
winget install -he Mozilla.Firefox
|
||||
winget install -he 7zip.7zip
|
||||
winget install -he Discord.Discord
|
||||
winget install -he Valve.Steam
|
||||
winget install -he voidtools.Everything.Lite
|
||||
winget install -he VideoLAN.VLC
|
||||
winget install -he File-New-Project.EarTrumpet
|
||||
winget install -he EclipseAdoptium.Temurin.17.JDK
|
||||
winget install -he EclipseAdoptium.Temurin.8.JDK
|
||||
winget install -he Microsoft.VisualStudioCode
|
||||
winget install -he GIMP.GIMP
|
||||
winget install -he DuongDieuPhap.ImageGlass
|
||||
winget install -he ONLYOFFICE.DesktopEditors
|
||||
winget install -he PrismLauncher.PrismLauncher
|
||||
winget install -he RiotGames.LeagueOfLegends.EUW
|
||||
winget install -he RiotGames.Valorant.EU
|
||||
winget install -he OBSProject.OBSStudio
|
||||
winget install -he Parsec.Parsec
|
||||
winget install -he Microsoft.PowerToys
|
||||
winget install -he OpenWhisperSystems.Signal
|
||||
winget install -he HandBrake.HandBrake
|
||||
winget install -he Front.scrcpy+
|
||||
winget install -he Obsidian.Obsidian
|
||||
winget install -he KDE.KDEConnect
|
||||
winget install -he HeroicGamesLauncher.HeroicGamesLauncher
|
||||
winget install -he Microsoft.PowerShell
|
||||
winget install -he Eassos.DiskGenius
|
||||
winget install -he Xournal++.Xournal++
|
||||
:: Applications
|
||||
SET ^"apps=Mozilla.Firefox 7zip.7zip Discord.Discord Valve.Steam ^
|
||||
voidtools.Everything.Lite VideoLAN.VLC File-New-Project.EarTrumpet ^
|
||||
EclipseAdoptium.Temurin.17.JDK EclipseAdoptium.Temurin.8.JDK ^
|
||||
Microsoft.VisualStudioCode GIMP.GIMP DuongDieuPhap.ImageGlass ^
|
||||
ONLYOFFICE.DesktopEditors HeroicGamesLauncher.HeroicGamesLauncher ^
|
||||
RiotGames.LeagueOfLegends.EUW RiotGames.Valorant.EU ^
|
||||
OBSProject.OBSStudio Parsec.Parsec Microsoft.PowerToys ^
|
||||
OpenWhisperSystems.Signal HandBrake.HandBrake Front.scrcpy+ ^
|
||||
Obsidian.Obsidian KDE.KDEConnect PrismLauncher.PrismLauncher ^
|
||||
Microsoft.PowerShell Eassos.DiskGenius Xournal++.Xournal++"
|
||||
|
||||
:: === C++ Libraries ==
|
||||
winget install -he Microsoft.VCRedist.2005.x86
|
||||
winget install -he Microsoft.VCRedist.2005.x64
|
||||
winget install -he Microsoft.VCRedist.2008.x86
|
||||
winget install -he Microsoft.VCRedist.2008.x64
|
||||
winget install -he Microsoft.VCRedist.2010.x86
|
||||
winget install -he Microsoft.VCRedist.2010.x64
|
||||
winget install -he Microsoft.VCRedist.2012.x86
|
||||
winget install -he Microsoft.VCRedist.2012.x64
|
||||
winget install -he Microsoft.VCRedist.2013.x86
|
||||
winget install -he Microsoft.VCRedist.2013.x64
|
||||
winget install -he Microsoft.VCRedist.2015+.x86
|
||||
winget install -he Microsoft.VCRedist.2015+.x64
|
||||
for %%i in (!apps!) do (
|
||||
!pm! %%i
|
||||
)
|
||||
|
||||
:: C++ Libraries
|
||||
SET ^"cpp_libs=Microsoft.VCRedist.2005.x86 Microsoft.VCRedist.2005.x64 ^
|
||||
Microsoft.VCRedist.2008.x86 Microsoft.VCRedist.2008.x64 ^
|
||||
Microsoft.VCRedist.2010.x86 Microsoft.VCRedist.2010.x64 ^
|
||||
Microsoft.VCRedist.2012.x86 Microsoft.VCRedist.2012.x64 ^
|
||||
Microsoft.VCRedist.2013.x86 Microsoft.VCRedist.2013.x64 ^
|
||||
Microsoft.VCRedist.2015+.x86 Microsoft.VCRedist.2015+.x64"
|
||||
|
||||
for %%i in (!cpp_libs!) do (
|
||||
!pm! %%i
|
||||
)
|
||||
|
||||
:: Install WSL
|
||||
wsl --install
|
||||
|
|
Loading…
Reference in a new issue