Last active
July 11, 2025 09:20
-
-
Save nlxdodge/ff8c3cbfab2c02c338f8c98e3a0cfdfe to your computer and use it in GitHub Desktop.
Windows 11 Install Script with Winget
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
@ECHO OFF | |
echo "Starting installation ๐" | |
:: Driver Software | |
winget install -e --id Nvidia.GeForceExperience | |
winget install -e --id Logitech.GHUB | |
winget install -e --id Corsair.iCUE.4 | |
winget install -e --id Nvidia.Broadcast | |
:: Gaming | |
winget install -e --id Playnite.Playnite | |
winget install -e --id Discord.Discord | |
winget install -e --id RuneLite.RuneLite | |
winget install -e --id Valve.Steam | |
winget install -e --id Ubisoft.Connect | |
winget install -e --id EpicGames.EpicGamesLauncher | |
winget install -e --id NexusMods.Vortex | |
winget install -e --id Blizzard.BattleNet | |
winget install -e --id Mojang.MinecraftLauncher | |
winget install -e --id ElectronicArts.EADesktop | |
winget install -e --id GOG.Galaxy | |
winget install -e --id DolphinEmu.DolphinEmu | |
winget install -e --id Amazon.Games | |
winget install -e --id Overwolf.CurseForge | |
winget install -e --id ItchIo.Itch | |
winget install -e --id IG.IGClient | |
:: Media and Office | |
winget install -e --id Mozilla.Firefox | |
winget install -e --id Mozilla.Thunderbird | |
winget install -e --id ThaUnknown.Miru | |
winget install -e --id Jellyfin.JellyfinMediaPlayer | |
winget install -e --id LibreOffice.LibreOffice | |
winget install -e --id Logseq.Logseq | |
winget install -e --id KDE.Kdenlive | |
winget install -e --id AIMP.AIMP | |
winget install -e --id KDE.Krita | |
winget install -e --id WhatsApp.WhatsApp | |
winget install -e --id OpenWhisperSystems.Signal | |
winget install -e --id yt-dlp.yt-dlp | |
winget install -e --id VideoLAN.VLC | |
:: Utility | |
winget install -e --id SomePythonThings.WingetUIStore | |
winget install -e --id Rem0o.FanControl | |
winget install -e --id Microsoft.PowerToys | |
winget install -e --id LibreHardwareMonitor.LibreHardwareMonitor | |
winget install -e --id AMD.RyzenMaster | |
winget install -e --id Windscribe.Windscribe | |
winget install -e --id OBSProject.OBSStudio | |
winget install -e --id 7zip.7zip | |
winget install -e --id AntibodySoftware.WizTree | |
winget install -e --id TGRMNSoftware.BulkRenameUtility | |
winget install -e --id Mega.MEGASync | |
winget install -e --id PicoTorrent.PicoTorrent | |
winget install -e --id CrystalDewWorld.CrystalDiskInfo.AoiEdition | |
winget install -e --id CrystalDewWorld.CrystalDiskMark.AoiEdition | |
winget install -e --id sylikc.JPEGView | |
winget install -e --id Guru3D.Afterburner | |
:: Programming | |
winget install -e --id Git.Git | |
winget install -e --id Insomnia.Insomnia | |
winget install -e --id WinSCP.WinSCP | |
winget install -e --id Microsoft.VisualStudioCode | |
winget install -e --id JetBrains.Toolbox | |
winget install -e --id RedHat.Podman-Desktop | |
winget install -e --id OpenJS.NodeJS.LTS | |
winget install -e --id pnpm.pnpm | |
winget install -e --id JGraph.Draw | |
winget install -e --id Microsoft.WSL | |
echo "Installation completed ๐" | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment