-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup_tools.ps1
35 lines (24 loc) · 1019 Bytes
/
setup_tools.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
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'))
#write the profile out
$newpath = $env:path, ";C:\Program Files\Git\cmd" -join ''
$newpath >> $PROFILE.CurrentUserAllHosts
choco feature enable -n allowGlobalConfirmation
choco install iridium-browser -y
# browsers
choco install googlechrome -y
choco install lastpass-chrome -y
choco install microsoft-edge -y
# shells
choco install powershell-core -y
choco install powershellhere -y
choco install azure-cli -y
choco install postman -y
#coding
choco install git -y
choco install vscode -y
#utils
choco install 7zip -y
# debloat windows 10
New-item c:\Source -force
cd \Source
start-process powershell -ArgumentList '-noexit -command "git clone https://github.com/Sycnex/Windows10Debloater.git;./Windows10Debloater/Windows10Debloater.ps1 -Debloat"'