We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 887a4f6 commit a53d65bCopy full SHA for a53d65b
DeployTools.ps1
@@ -7,6 +7,11 @@ Invoke-WebRequest -uri "http://freefr.dl.sourceforge.net/project/sevenzip/7-Zip/
7
Start-Process -Wait msiexec.exe -ArgumentList "/i $filename /qn"
8
del $filename
9
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
+
15
$filename = "npp.6.4.5.Installer.exe"
16
Invoke-WebRequest -uri "http://download.tuxfamily.org/notepadplus/6.4.5/npp.6.4.5.Installer.exe" -outFile $filename
17
Start-Process -Wait -FilePath $filename -ArgumentList "/S"
0 commit comments