-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.ps1
36 lines (30 loc) · 1009 Bytes
/
install.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
# install wsl
wsl --install
# install choco
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
# install non-dev soft
choco install 7zip -y
choco install sharex -y
choco install googlechrome -y
choco install spotify -y
choco install kdenlive -y
choco install obs-studio.install -y
# install communication soft
choco install skype -y
choco install discord -y
choco install telegram -y
# install best game ever
choco install multimc -y
# install dev soft
choco install git -y
choco install openjdk17 -y
choco install gradle -y
choco install nodejs -y
choco install python -y
choco install jetbrainstoolbox -y
choco install vscode -y
choco install postman -y
choco install beekeeper-studio.install -y
choco install docker-desktop -y
# restart pc for complete installation
restart-computer