Skip to content

Commit

Permalink
Issue #3190 (#3191)
Browse files Browse the repository at this point in the history
Download new NavSip prerequisites in version 23.0.12034.12480

Co-authored-by: freddydk <[email protected]>
  • Loading branch information
freddydk and freddydk committed Sep 23, 2023
1 parent 45c6caa commit 64b064f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions AppHandling/Sign-NavContainerApp.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,13 @@ try {
Write-Host "Installing vcredist_x64"
start-process -Wait -FilePath c:\run\install\vcredist_x64.exe -ArgumentList /q, /norestart
}

if (!(Test-Path "C:\Windows\System32\vcruntime140_1.dll")) {
Write-Host "Downloading vcredist_x64 (version 140)"
(New-Object System.Net.WebClient).DownloadFile('https://aka.ms/vs/17/release/vc_redist.x64.exe','c:\run\install\vcredist_x64-140.exe')
Write-Host "Installing vcredist_x64 (version 140)"
start-process -Wait -FilePath c:\run\install\vcredist_x64-140.exe -ArgumentList /q, /norestart
}

if (Test-Path "C:\Program Files (x86)\Windows Kits\10\bin\*\x64\SignTool.exe") {
$signToolExe = (get-item "C:\Program Files (x86)\Windows Kits\10\bin\*\x64\SignTool.exe").FullName
Expand Down
1 change: 1 addition & 0 deletions ReleaseNotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Add switch "doNotGetCompanyInfo" to "New-BcEnvironment" to enable skipping getti
Issue #3151 Get-AppSourceProduct returns 404 Not Found
Add parameters exclusiveAccessTicket, path, syncMode, force and skipVersionCheck to Start-BcContainerAppDataUpgrade.
Issue #3146 Publish-BcContainerApp not working headless
Issue #3190 Sign-Tool stopped working in 23.0.12034.12480

5.0.5
Add new option (exitedContainers) on Flush-ContainerHelperCache. Note that exited containers are NOT remove by the all flag, you need all,exitedContainers
Expand Down

0 comments on commit 64b064f

Please sign in to comment.