Skip to content

Commit 535b672

Browse files
committed
Fix typos
1 parent 9ca4890 commit 535b672

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Install-Software.ps1

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ $WindowsFeatures = [ordered]@{
168168

169169
function Install-AtostekID([string]$Version = "4.1.1.0") {
170170
# Get-Package does not work on PowerShell 7
171-
$DigiSign = Get-InstalledSoftware | Where-Object {$_.Name -eq "mPollux DigiSign Client"}
171+
$DigiSign = Get-InstalledSoftware | Where-Object {$_.Name -eq "mPollux DigiSign Client"}
172172
if ($DigiSign) {
173173
Show-Output "Fujitsu mPollux DigiSign Client found. Uninstalling."
174174
Invoke-CimMethod -InputObject $DigiSign -MethodName Uninstall
@@ -249,7 +249,7 @@ function Install-LenovoSuperIOFirmware {
249249
# Lenovo ThinkStation P330 Tiny
250250
if ($ComputerSystem.Model -eq "30CES0B200") {
251251
$InstallerPath = "${SoftwareRepoPath}\Lenovo\P330 Tiny\Firmware\Lenovo Super IO Firmware\m1uct18usa.exe"
252-
$ScriptDir = "${env:SystemDrive}\SWTOOLS\M1UCT18USA"
252+
$ScriptDir = "${env:SystemDrive}\SWTOOLS\FLASH\M1UCT18USA"
253253
$ScriptPath = "${ScriptDir}\Flash64.cmd"
254254
if (Test-Path "$InstallerPath") {
255255
Start-Process -NoNewWindow -Wait "$InstallerPath" -ArgumentList "/silent"
@@ -391,6 +391,7 @@ function Install-Rezonator1([string]$Version = "1.7.116.375") {
391391
http://rezonator.orion-project.org/?page=dload
392392
#>
393393
$Filename = "rezonator-${Version}.exe"
394+
# The reZonator web page does not support HTTPS.
394395
Install-FromUri -Name "reZonator 1" -Uri "http://rezonator.orion-project.org/files/${Filename}" -Filename "${Filename}"
395396
}
396397

@@ -627,7 +628,7 @@ $OtherOperations = [ordered]@{
627628
"Intel ME firmware" = ${function:Install-MEFirmware}, "Intel Management Engine firmware";
628629
# "LabVIEW Runtime" = ${function:Install-LabVIEWRuntime}, "Required for running LabVIEW-based applications";
629630
"LabVIEW Runtime 2014 SP1 32-bit" = ${function:Install-LabVIEWRuntime2014SP1}, "Required for SSMbe (it requires this specific older version instead of the latest)";
630-
"Lenovo Super IO firmware" = ${function:Install-LenovoSuperIOFirmware}, "Firmware for the IO chip on Lenovo motherboards"
631+
"Lenovo Super IO firmware" = ${function:Install-LenovoSuperIOFirmware}, "Firmware for the IO chip on Lenovo motherboards";
631632
"Meerstetter TEC Software" = ${function:Install-MeerstetterTEC}, "Driver for Meerstetter TEC controllers";
632633
"NI 488.2 (GPIB)" = ${function:Install-NI4882}, "National Instruments GPIB drivers. Includes NI-VISA.";
633634
"NI-VISA 14.0.1 Runtime" = ${function:Install-NI-VISA1401Runtime}, "Required for SSMbe (it requires this specific older version instead of the latest)";

Utils.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ function New-Junction {
513513
if ($LinkType -or (-not $Backup)) {
514514
Show-Output "Removing old junction at `"${Path}`", LinkType=${LinkType}"
515515
# The -Recurse argument has to be specified to remove a junction.
516-
# They don't remove the actual directory or its contents. Please see the link above.
516+
# This doesn't remove the actual directory or its contents. Please see the link above.
517517
if($PSCmdlet.ShouldProcess($Path, "Remove-Item")) {
518518
Remove-Item "${Path}" -Recurse
519519
}

0 commit comments

Comments
 (0)