Skip to content

Commit a53d65b

Browse files
committed
Adds OpenSSL to DeployTools script
1 parent 887a4f6 commit a53d65b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

DeployTools.ps1

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ Invoke-WebRequest -uri "http://freefr.dl.sourceforge.net/project/sevenzip/7-Zip/
77
Start-Process -Wait msiexec.exe -ArgumentList "/i $filename /qn"
88
del $filename
99

10+
$filename="Win32OpenSSL_Light-1_0_1e.exe"
11+
Invoke-WebRequest -Uri "http://slproweb.com/download/$filename" -OutFile $filename
12+
Start-Process -Wait -FilePath $filename -ArgumentList "/silent /verysilent /sp- /suppressmsgboxes"
13+
del $filename
14+
1015
$filename = "npp.6.4.5.Installer.exe"
1116
Invoke-WebRequest -uri "http://download.tuxfamily.org/notepadplus/6.4.5/npp.6.4.5.Installer.exe" -outFile $filename
1217
Start-Process -Wait -FilePath $filename -ArgumentList "/S"

0 commit comments

Comments
 (0)