Ignore outdated checksums

This commit is contained in:
Manuel Thalmann 2023-07-20 15:48:49 +02:00
parent a9da573b1e
commit e51c152623
2 changed files with 5 additions and 2 deletions

View file

@ -17,7 +17,10 @@ function Install-PortValhallaDrivers {
. "$driverPath/AMDChipsetX399/Install.ps1" $context; . "$driverPath/AMDChipsetX399/Install.ps1" $context;
. "$driverPath/Tobii EyeX/Install.ps1" $context; . "$driverPath/Tobii EyeX/Install.ps1" $context;
choco install -y amd-ryzen-master geforce-game-ready-driver icue wavelink; choco install -y --ignore-checksums `
amd-ryzen-master;
choco install -y geforce-game-ready-driver icue wavelink;
$context.RemoveDesktopIcon("*Wave Link*"); $context.RemoveDesktopIcon("*Wave Link*");
} }

View file

@ -40,7 +40,7 @@ $null = New-Module {
function Restore-LogitechGHUB([Context] $context) { function Restore-LogitechGHUB([Context] $context) {
Write-Host "Restoring Logitech G HUB"; Write-Host "Restoring Logitech G HUB";
Write-Information "Installing the app"; Write-Information "Installing the app";
choco install -y lghub; choco install -y --ignore-checksums lghub;
$hubPath = Stop-LogitechGHUB; $hubPath = Stop-LogitechGHUB;
Write-Information "Restoring important files"; Write-Information "Restoring important files";
$context.Restore($context.SoftwareArchive($softwareName), $path); $context.Restore($context.SoftwareArchive($softwareName), $path);