mirror of
https://github.com/W4RH4WK/Debloat-Windows-10.git
synced 2024-11-17 15:25:37 +00:00
784795e50f
close #15
33 lines
669 B
PowerShell
33 lines
669 B
PowerShell
# Description:
|
|
# This script will use Windows package manager manager to bootstrap chocolatey
|
|
# and install a list of packages.
|
|
|
|
$packages = @(
|
|
"notepadplusplus.install"
|
|
"peazip.install"
|
|
#"7zip.install"
|
|
#"aimp"
|
|
#"audacity"
|
|
#"autoit"
|
|
#"filezilla"
|
|
#"firefox"
|
|
#"gimp"
|
|
#"google-chrome-x64"
|
|
#"imgburn"
|
|
#"keepass.install"
|
|
#"paint.net"
|
|
#"putty"
|
|
#"python"
|
|
#"qbittorrent"
|
|
#"thunderbird"
|
|
#"vlc"
|
|
#"windirstat"
|
|
#"wireshark"
|
|
)
|
|
|
|
echo "Setting up Chocolatey"
|
|
Get-PackageProvider -Name chocolatey -Force
|
|
|
|
echo "Installing Packages"
|
|
Install-Package -Name $packages -Force
|