-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall-basic-software.ps1
40 lines (37 loc) · 1.06 KB
/
install-basic-software.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
# Description:
# This script will use Windows package manager to bootstrap Chocolatey and
# install a list of packages. Script will also install Sysinternals Utilities
# into your default drive's root directory.
$packages = @(
"notepadplusplus.install"
#"peazip.install"
"7zip.install"
#"aimp"
#"audacity"
#"autoit"
"open-shell"
#"filezilla"
"firefox"
"gimp"
#"google-chrome-x64"
#"imgburn"
#"keepass.install"
#"paint.net"
#"putty"
#"python"
#"qbittorrent"
#"speedcrunch"
#"sysinternals"
#"thunderbird"
"vlc"
#"windirstat"
#"wireshark"
"adobereader"
"vcredist-all"
#"jdownloader"
"oldcalc"
)
echo "Setting up Chocolatey software package manager"
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
#install packages
choco install $packages --ignore-checksums -y