forked from Axlfc/get-winget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_myPrograms.ps1
62 lines (61 loc) · 1.43 KB
/
install_myPrograms.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
function Populate-Windows {
Param(
[Parameter(Mandatory=$true,Position=0)] [String]$ProgramName
)
winget install -e --id $ProgramName --force
}
$pop_apps = "Mozilla.Firefox",
"Kitware.CMake",
"Microsoft.VisualStudio.2022.BuildTools",
"EpicGames.EpicGamesLauncher",
"Spotify.Spotify",
"Ytmdesktop.Ytmdesktop",
"File-New-Project.EarTrumpet",
"Telegram.TelegramDesktop",
"Bandisoft.Honeyview",
"VideoLAN.VLC",
"Valve.Steam",
"PeterPawlowski.foobar2000",
"Nvidia.GeForceExperience",
"Nvidia.CUDA",
"BleachBit.BleachBit",
"RiotGames.LeagueOfLegends.EUW",
"Notepad++.Notepad++",
"AntibodySoftware.WizTree",
"EliasFotinis.DeskPins",
"AppWork.JDownloader",
"Discord.Discord",
"Adobe.Acrobat.Reader.64-bit",
"TheDocumentFoundation.LibreOffice",
"Autodesk.DesktopApp",
"Python.Python.3.11",
"TortoiseGit.TortoiseGit",
"GitHub.GitLFS",
"Git.Git",
"OBSProject.OBSStudio",
"Oracle.VirtualBox",
"Transmission.Transmission",
"calibre.calibre",
"Mozilla.Thunderbird",
"Google.Drive",
"TeamViewer.TeamViewer",
"RealVNC.VNCServer",
"RealVNC.VNCViewer",
"Audacity.Audacity",
"BlenderFoundation.Blender",
"Microsoft.WindowsTerminal",
"Mega.MEGASync",
"Unity.UnityHub",
"AnyDeskSoftwareGmbH.AnyDesk",
"JetBrains.PyCharm.Community",
"Fork.Fork",
"Microsoft.DotNet.SDK.7",
"Microsoft.PowerToys",
"VSCodium.VSCodium.Insiders",
"VB-Audio.Voicemeeter.Banana",
"OpenVPNTechnologies.OpenVPNConnect"
foreach ($pop_app in $pop_apps)
{
Write-Host $pop_app
Populate-Windows $pop_app
}