-
Notifications
You must be signed in to change notification settings - Fork 0
/
Install_Programms.py
142 lines (130 loc) · 3.72 KB
/
Install_Programms.py
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
import os
import time
# Installing Programms
print("Installing programms now...")
time.sleep(1)
print("Installing Firefox now...")
os.system("choco install -y firefox")
print("Done!")
time.sleep(1)
print("Installing 7-Zip now...")
os.system("choco install -y 7zip")
print("Done!")
time.sleep(1)
print("Installing Discord now...")
os.system("choco install -y discord")
print("Done!")
time.sleep(1)
print("Installing Paint.NET now...")
os.system("choco install -y paint.net")
print("Done")
time.sleep(1)
print("Installing Steam now...")
os.system("choco install -y steam")
print("Done!")
time.sleep(1)
print("Installing Epic Games Launcher now...")
os.system("choco install -y epicgameslauncher")
print("Done!")
time.sleep(1)
print("Installing WhatsApp now...")
os.system("choco install -y whatsapp")
print("Done!")
time.sleep(1)
print("Installing OBS Studio now...")
os.system("choco install -y obs-studio")
print("Done!")
time.sleep(2)
# Installing optional programms
print("Installing optional programms now...")
time.sleep(1)
install_itunes = input("Do you want to install iTunes (Y/N)?")
time.sleep(1)
if install_itunes.lower() == "y":
print("installing iTunes now...")
time.sleep(1)
os.system("choco install -y itunes")
else:
print("Not installing iTunes.")
time.sleep(1)
install_zoom = input("Do you want to install Zoom (Y/N)?")
time.sleep(1)
if install_zoom.lower() == "y":
print("installing Zoom now...")
time.sleep(1)
os.system("choco install -y zoom")
else:
print("Not installing Zoom.")
time.sleep(1)
install_python = input("Do you want to install Python3 (Y/N)?")
time.sleep(1)
if install_python.lower() == "y":
print("installing Python3 now...")
time.sleep(1)
os.system("choco install -y python3")
else:
print("Not installing Python3")
time.sleep(1)
install_vsc = input("Do you want to install Visual Studio Code (Y/N)?")
time.sleep(1)
if install_vsc.lower() == "y":
print("Installing Visual Studio Code now...")
time.sleep(1)
os.system("choco install -y vscode")
else:
print("Not installing Visual Studio Code.")
time.sleep(1)
install_nodejs = input("Do you want to install Node.js (Y/N)?")
time.sleep(1)
if install_nodejs.lower() == "y":
print("Installing Node.js now...")
time.sleep(1)
os.system("choco install -y nodejs")
else:
print("Not installing Node.js.")
time.sleep(1)
install_win_terminal = input("Do you want to install Windows Terminal (Y/N)?")
time.sleep(1)
if install_win_terminal.lower() == "y":
print("Installing Windows Terminal now...")
time.sleep(1)
os.system("choco install -y microsoft-windows-terminal")
else:
print("Not installing Windows Terminal.")
time.sleep(1)
install_git = input("Do you want to install GIT (Y/N)?")
time.sleep(1)
if install_git.lower() == "y":
print("Installing GIT now...")
time.sleep(1)
os.system("choco install -y git")
else:
print("Not installing GIT.")
time.sleep(1)
install_blender = input("Do you want to install Blender (Y/N)?")
time.sleep(1)
if install_blender.lower() == "y":
print("Installing Blender now...")
time.sleep(1)
os.system("choco install -y blender")
else:
print("Not installing Blender.")
time.sleep(1)
install_powertoys = input("Do you want to install Powertoys (Y/N)?")
time.sleep(1)
if install_powertoys.lower() == "y":
print("Installing Powertoys now...")
time.sleep(1)
os.system("choco install -y powertoys")
else:
print("Not installing Powertoys.")
time.sleep(1)
install_voicemeeter = input("Do you want to install Voicemeeter (Y/N)?")
time.sleep(1)
if install_voicemeeter.lower() == "y":
print("Installing Voicemeeter now...")
time.sleep(1)
os.system("choco install -y voicemeeter-banana")
else:
print("Not installing Voicemeeter.")
time.sleep(1)