-
Notifications
You must be signed in to change notification settings - Fork 2
/
Init-chocolatey-windows.bat
85 lines (73 loc) · 1.96 KB
/
Init-chocolatey-windows.bat
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
:: Run as Administrator
:: Installing chocolatey from CMD
:: @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
:: OR
:: Installing chocolatey from Powershell
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Packages - see https://chocolatey.org/packages
choco install -y ^
cursoride ^
docker-desktop ^
firefox ^
git ^
github-desktop ^
notepadplusplus ^
putty ^
python3 --version 3.10 -override --installarguments "'/quiet InstallAllUsers=1 TargetDir=c:\Python310'" ^
signal ^
sysinternals --params "/InstallDir:C:\Sysinternals" ^
vscode-insiders.install ^
winrar
:: --- VPN
:: nordvpn ^
:: openvpn --params="'/SELECT_OPENVPNGUI=1'" ^
:: protonvpn ^
:: --- aws
:: awscli-session-manager ^
:: aws-iam-authenticator ^
:: cloudformation-guard --version=1.0.0 ^
:: nosql-workbench ^
:: saml2aws ^
:: --- Dev CLI / Languages
:: awscli ^
:: golang ^
:: jre8 ^
:: jq ^
:: nodejs ^
:: --- k8s
:: lens ^
:: k9s ^
:: kubernetes-helm ^
:: --- github, git
:: gh ^
:: gitkraken ^
:: sourcetree ^
:: --- Altair GraphQL Client
:: altair-graphql ^
:: activepresenter ^
:: androidstudio ^
:: cyberduck ^
:: dependencywalker ^
:: everything ^
:: googlechrome ^
:: graphviz ^
:: itunes ^
:: kdiff3 ^
:: keepassxc ^
:: lazydocker ^
:: nano ^
:: pgadmin4 ^
:: postman ^
:: pycharm-community ^
:: qgis ^
:: rdcman ^
:: slack ^
:: superputty ^
:: tor-browser ^
:: windirstat ^
:: Install wireshark and winpcap (winpcap is the capture library required for wireshark)
:: winpcap ^
:: wireshark ^
:: Confirm what have been installed
choco list --localonly