-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathInstallWithPrompts.ps1
More file actions
234 lines (164 loc) · 5.51 KB
/
InstallWithPrompts.ps1
File metadata and controls
234 lines (164 loc) · 5.51 KB
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
$ProgramArray = New-Object System.Collections.ArrayList
$URL = "https://ninite.com/"
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
function CheckAndDelete($file){
if (Test-Path $file -PathType leaf) {
Remove-Item $file
}
}
function stopStartup($file){
if($File -eq "CCleaner"){
Set-ItemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run -Name 'CCleaner Smart Cleaning' -Value ([byte[]](0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00))
Set-ItemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run -Name CCleaner -Value ([byte[]](0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00))
Write-Host "CCleaner autostartup has been disabled"
}
}
function manualAdd($filename){
$filename = Read-Host -Prompt 'Input your program with URL-friendly, lowercase text'
return $filename
}
$GetInfo = {
$NextProgram = Read-Host -Prompt 'Input a program name that you want to install'
switch ($NextProgram) {
'Audacity' {
'Audacity will be added'
$ProgramArray.Add('audacity') > $null
&$GetInfo
}
'Chrome' {
'Chrome will be added'
$ProgramArray.Add('chrome') > $null
&$GetInfo
}
'CCleaner' {
'CCleaner will be added'
$ProgramArray.Add('CCleaner') > $null
&$GetInfo
}
'Firefox' {
'Firefox will be added'
$ProgramArray.Add('firefox') > $null
&$GetInfo
}
'Foxit' {
'Foxit will be added'
$ProgramArray.Add('foxit') > $null
&$GetInfo
}
'Greenshot' {
'Greenshot will be added'
$ProgramArray.Add('greenshot') > $null
&$GetInfo
}
'Malwarebytes' {
'Malwarebytes will be added'
$ProgramArray.Add('malwarebytes') > $null
&$GetInfo
}
'Notepad++' {
'Notepad++ will be added'
$ProgramArray.Add('notepadplusplus') > $null
&$GetInfo
}
'Reader' {
'Adobe Reader will be added'
$ProgramArray.Add('reader') > $null
&$GetInfo
}
'VLC' {
'VLC will be added'
$ProgramArray.Add('vlc') > $null
&$GetInfo
}
'Zoom' {
'Zoom will be added'
$ProgramArray.Add('zoom') > $null
&$GetInfo
}
'default' {
'CCleaner, Chrome, Malwarebytes, and Reader will be added'
$ProgramArray.Add('CCleaner') > $null
$ProgramArray.Add('chrome') > $null
$ProgramArray.Add('malwarebytes') > $null
$ProgramArray.Add('reader') > $null
&$GetInfo
}
'reset' {
'Your selections will be reset'
$ProgramArray = @()
&$GetInfo
}
'list' {
$ProgramArray
&$GetInfo
}
'add' {
$filename = manualAdd($filename)
$ProgramArray.Add($filename) > $null
&$GetInfo
}
'delete' {
CheckAndDelete("Ninite.exe")
CheckAndDelete("ccsetup569.exe")
CheckAndDelete("ReaderInstaller.exe")
Write-Host 'Files deleted'
&$GetInfo
}
'more' {
Write-Host '"list" lists everything in the ArrayList. "add" allows for manual addition of other Ninite-provided programs. "startup" disables autobooting of programs.'-ForegroundColor green -BackgroundColor black
Write-Host '"default" will install CCleaner, Chrome, Malwarebytes, and Reader'-ForegroundColor green -BackgroundColor black
&$GetInfo
}
'startup' {
stopStartup("CCleaner")
'CCleaner now will not start automatically'
&$GetInfo
}
'all' {
'You will download all listed programs'
Invoke-WebRequest https://ninite.com/audacity-chrome-firefox-foxit-greenshot-malwarebytes-notepadplusplus-vlc-zoom/ -OutFile Ninite.exe
Invoke-WebRequest http://ftp.adobe.com/pub/adobe/reader/win/AcrobatDC/2000920063/AcroRdrDC2000920063_en_US.exe -OutFile ReaderInstaller.exe
Invoke-WebRequest https://download.ccleaner.com/ccsetup569.exe -OutFile ccsetup569.exe
Start-Process -FilePath Ninite.exe
Start-Process -FilePath ccsetup569.exe /S
cmd ReaderInstaller.exe /sAll
&$GetInfo
}
'done' {
'Please wait while we install your selections'
If ($ProgramArray -contains "reader") {
Start-BitsTransfer http://ftp.adobe.com/pub/adobe/reader/win/AcrobatDC/2000920063/AcroRdrDC2000920063_en_US.exe, ReaderInstaller.exe
cmd ReaderInstaller.exe /sAll
$ProgramArray.Remove("reader")
}
If ($ProgramArray -contains "CCleaner") {
Start-BitsTransfer https://download.ccleaner.com/ccsetup569.exe, ccsetup569.exe
Start-Process -FilePath ccsetup569.exe /S
$ProgramArray.Remove("CCleaner")
}
If($ProgramArray.Count -gt 0){
$ProgramArray.Sort()
foreach ($element in $ProgramArray) {
$URL += $element + "-"
}
$URL = $URL.Substring(0,$URL.Length-1)
$URL = "https://ninite.com/" + $URL + "/ninite.exe"
Start-BitsTransfer $URL, Ninite.exe
Start-Process -FilePath Ninite.exe
Write-Host 'Be sure to use "delete" to remove your setup files!'
}
ElseIf ($ProgramArray.Count -eq 0){
Write-Host "Please enter at least one program"
&$GetInfo
}
}
Else {
'Please use a valid response'
&$GetInfo
}
}
}
Write-Host 'Your options are: Audacity, CCleaner, Chrome, Firefox, Foxit, Greenshot, Malwarebytes, Notepad++, Reader, VLC, Zoom' -ForegroundColor green -BackgroundColor black
Write-Host 'You can use "all" to select all listed options, "reset" to reset your selections, and "done" to finalize everything'-ForegroundColor green -BackgroundColor black
Write-Host '"delete" will remove all setup files. Use "more" for additional commands'-ForegroundColor green -BackgroundColor black
&$GetInfo