-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path7MC_Win64_Setup.cmd
More file actions
executable file
·43 lines (33 loc) · 984 Bytes
/
7MC_Win64_Setup.cmd
File metadata and controls
executable file
·43 lines (33 loc) · 984 Bytes
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
@echo off
cd %~dp0
::ECHO Connecting to internet
::NETSH WLAN SET HOSTEDNETWORK MODE=ALLOW SSID=”YOUR WIFI CONNECTION NAME” KEY=”YOUR WIFI CONNECTION PASSWORD”
ECHO Installing Python...
python-3.6.2-amd64.exe /quiet InstallAllUsers=1 PrependPath=1 Include_test=0
ECHO Done!
ECHO Installing Python Packages...
pip install -r pypacks.txt
ECHO Done!
ECHO Installing VSCode...
VSCodeSetup-x64.exe /SILENT
ECHO Done!
ECHO Installing Chrome...
ChromeStandaloneSetup64.exe
setChrome.vbs
ECHO Done!
ECHO Installing Git...
Git64-bit.exe /SILENT
ECHO Done!
ECHO Gathering resources...
SET resDir=%userprofile%\Documents\resources
mkdir resDir
cd resDir
git init
git remote add origin https://github.com/SevenMileCoding/student-resources.git
::git pull origin master
mkdir %userprofile%\Documents\code
::TODO: remove old pins and add new apps to taskbar
::TODO: create shortcuts on desktop as well
::TODO: reboot
ECHO All done!
PAUSE