-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_via_winget.ps1
53 lines (53 loc) · 1.45 KB
/
install_via_winget.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
# Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
$AppIds = @(
# 'CoreyButler.NVMforWindows'
# 'dbeaver.dbeaver'
# 'Docker.DockerDesktop'
# 'GIMP.GIMP'
# 'Git.Git'
# 'Google.JapaneseIME'
# 'JGraph.Draw'
# 'Microsoft.VCRedist.2015+.x64'
# 'RedHat.Podman'
# 'RedHat.Podman-Desktop'
# 'SlackTechnologies.Slack'
# 'TortoiseGit.TortoiseGit'
# 'TortoiseSVN.TortoiseSVN'
'7zip.7zip'
'Adobe.Acrobat.Reader.64-bit'
'Bitwarden.Bitwarden'
'bmatzelle.Gow'
'Brave.Brave'
'CubeSoft.CubePDF'
'CubeSoft.CubePDFUtility'
'DevToys-app.DevToys'
'EclipseAdoptium.Temurin.11.JDK'
'EclipseAdoptium.Temurin.17.JDK'
'EclipseAdoptium.Temurin.21.JDK'
'EclipseAdoptium.Temurin.8.JDK'
'Flow-Launcher.Flow-Launcher'
'Google.Chrome'
'Graphviz.Graphviz'
'JetBrains.Toolbox'
'Meld.Meld'
'Microsoft.PCManager.CN'
'Microsoft.PowerShell'
'Microsoft.PowerToys'
'Microsoft.VisualStudioCode'
'Microsoft.WindowsTerminal'
'MilosParipovic.OneCommander'
'Mozilla.Firefox'
'Notepad++.Notepad++'
'Oracle.VirtualBox'
'qBittorrent.qBittorrent'
'stnkl.EverythingToolbar'
'TrackerSoftware.PDF-XChangeViewer'
'Vivaldi.Vivaldi'
'voidtools.Everything'
'Volta.Volta'
'WinMerge.WinMerge'
'Xmind.Xmind.8'
)
$AppIds | ForEach-Object {
& winget install --id $_ --silent --accept-package-agreements --accept-source-agreements
}