Lade till installationsscript för ny Windowsdator
This commit is contained in:
27
new_windows_install_apps_winget.ps1
Normal file
27
new_windows_install_apps_winget.ps1
Normal file
@@ -0,0 +1,27 @@
|
||||
# Installera paket via winget
|
||||
$packages = @(
|
||||
"7zip.7zip"
|
||||
"Audacity.Audacity"
|
||||
"AutoHotkey.AutoHotkey"
|
||||
"Beeftext.Beeftext"
|
||||
"BlenderFoundation.Blender"
|
||||
"Brave.Brave"
|
||||
"iterate.chocolatey.cyberduck" # fallback ibland
|
||||
"Gyan.FFmpeg"
|
||||
"Git.Git"
|
||||
"HandBrake.HandBrake"
|
||||
"JetBrains.Rider"
|
||||
"KDE.Krita"
|
||||
"Mozilla.Firefox"
|
||||
"OBSProject.OBSStudio"
|
||||
"Oracle.VirtualBox"
|
||||
"Meltytech.Shotcut"
|
||||
"Unity.UnityHub"
|
||||
"VideoLAN.VLC"
|
||||
"Valve.Steam"
|
||||
"Microsoft.VisualStudio.2022.Community"
|
||||
)
|
||||
|
||||
foreach ($pkg in $packages) {
|
||||
winget install --id $pkg -e --accept-source-agreements --accept-package-agreements
|
||||
}
|
||||
Reference in New Issue
Block a user