Ignore outdated checksums
This commit is contained in:
parent
3b918ca0a1
commit
0601c7c35b
2 changed files with 5 additions and 2 deletions
|
@ -17,7 +17,10 @@ function Install-PortValhallaDrivers {
|
|||
. "$driverPath/AMDChipsetX399/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*");
|
||||
}
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ $null = New-Module {
|
|||
function Restore-LogitechGHUB([Context] $context) {
|
||||
Write-Host "Restoring Logitech G HUB";
|
||||
Write-Information "Installing the app";
|
||||
choco install -y lghub;
|
||||
choco install -y --ignore-checksums lghub;
|
||||
$hubPath = Stop-LogitechGHUB;
|
||||
Write-Information "Restoring important files";
|
||||
$context.Restore($context.SoftwareArchive($softwareName), $path);
|
||||
|
|
Loading…
Reference in a new issue