27 lines
No EOL
627 B
PowerShell
27 lines
No EOL
627 B
PowerShell
$apps = @(
|
|
"LibreWolf.LibreWolf",
|
|
"ImputNet.Helium",
|
|
"Google.Chrome",
|
|
"VideoLAN.VLC",
|
|
"mpv.net",
|
|
"ZedIndustries.Zed",
|
|
"Microsoft.PowerToys",
|
|
"Microsoft.VisualStudioCode",
|
|
"7zip.7zip",
|
|
"Git.Git",
|
|
"Notepad++.Notepad++",
|
|
"voidtools.Everything",
|
|
"Inkscape.Inkscape",
|
|
"OBSProject.OBSStudio",
|
|
"Valve.Steam",
|
|
"Microsoft.PowerShell",
|
|
"WinSCP.WinSCP",
|
|
"MartiCliment.UniGetUI",
|
|
"Microsoft.WindowsTerminal",
|
|
"Tailscale.Tailscale",
|
|
"Inkscape.Inkscape",
|
|
"RustDesk.RustDesk",
|
|
"",
|
|
)
|
|
|
|
$apps | ForEach-Object { winget install --id $_ --exact --accept-source-agreements --accept-package-agreements } |