Skip to content

Commit 0370ff9

Browse files
committed
Add Digilent Waveforms to the installer script
1 parent 2feb071 commit 0370ff9

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Install-Software.ps1

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,11 @@ function Install-CorelDRAW {
201201
# Install-FromUri -Name "Fujitsu mPollux DigiSign" -Uri "https://dvv.fi/documents/16079645/216375523/${Filename}" -Filename "${Filename}"
202202
# }
203203

204+
function Install-DigilentWaveforms([string]$Version = "3.24.4") {
205+
$Filename = "digilent.waveforms_v${Version}_64bit.exe"
206+
Install-FromUri -Name "Digilent Waveforms" -Uri "https://files.digilent.com/Software/Waveforms/${Version}/${Filename}" -Filename "${Filename}"
207+
}
208+
204209
function Install-Eduroam {
205210
Install-FromUri -Name "Eduroam" -Uri "https://dl.eduroam.app/windows/x86_64/geteduroam.exe" -Filename "geteduroam.exe"
206211
}
@@ -627,6 +632,7 @@ $OtherOperations = [ordered]@{
627632
"Atostek ID" = ${function:Install-AtostekID}, "Card reader software for Finnish identity cards";
628633
"Basler Pylon" = ${function:Install-BaslerPylon}, "Driver for Basler cameras";
629634
"CorelDRAW" = ${function:Install-CorelDRAW}, "Graphic design, illustration and technical drawing software. Requires a license.";
635+
"Digilent Waveforms" = ${function:Install-DigilentWaveforms}, "Measurement software for Digilent lab devices";
630636
"Eduroam" = ${function:Install-Eduroam}, "University Wi-Fi";
631637
# "Fujitsu mPollux DigiSign" = ${function:Install-DigiSign}, "Card reader software for Finnish identity cards";
632638
"Geekbench" = ${function:Install-Geekbench}, "Performance testing utility, versions 2-5. Commercial use requires a license.";

0 commit comments

Comments
 (0)