Skip to content

Commit f986acc

Browse files
committed
Add FDA eSubmitter
1 parent 5720bb6 commit f986acc

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
*.zip
44
.idea
55
downloads
6+
errors.log
67
lib
78
logs
89
obs-studio/crashes

Install-Software.ps1

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,14 @@ function Install-Eduroam {
212212
Install-FromUri -Name "Eduroam" -Uri "https://dl.eduroam.app/windows/x86_64/geteduroam.exe" -Filename "geteduroam.exe"
213213
}
214214

215+
function Install-FDAeSubmitter {
216+
Install-FromUri -Name "FDA eSubmitter" `
217+
-Uri "https://www.accessdata.fda.gov/esubmissions/ftparea/esubmitter/platforms/Windows/IncludeJvm/jinstall.zip" `
218+
-Filename "jinstall.zip" -UnzipFolderName "${jinstall}" -UnzippedFilePath "jinstall.exe" `
219+
-SHA256 "b98d19c7ae5daf53f7cb7e552a15f8c5c67609a2ffb4b789cf530f8b6733b6fb" `
220+
-BypassAuthenticode
221+
}
222+
215223
function Install-Git {
216224
<#
217225
.SYNOPSIS
@@ -648,6 +656,7 @@ $OtherOperations = [ordered]@{
648656
"CorelDRAW" = ${function:Install-CorelDRAW}, "Graphic design, illustration and technical drawing software. Requires a license.";
649657
"Digilent Waveforms" = ${function:Install-DigilentWaveforms}, "Measurement software for Digilent lab devices";
650658
"Eduroam" = ${function:Install-Eduroam}, "University Wi-Fi";
659+
"FDA eSubmitter" = ${function:Install-FDAeSubmitter}, "Utility for submitting information to the U.S. Food & Drug Administration";
651660
# "Fujitsu mPollux DigiSign" = ${function:Install-DigiSign}, "Card reader software for Finnish identity cards";
652661
"Geekbench" = ${function:Install-Geekbench}, "Performance testing utility, versions 2-5. Commercial use requires a license.";
653662
"Git" = ${function:Install-Git}, "Git with custom arguments (SSH available from PATH etc.)";

0 commit comments

Comments
 (0)