diff --git a/profiles/DerGeret/Windows/Drivers.ps1 b/profiles/DerGeret/Windows/Drivers.ps1
index 6b6486fb..eaeab33c 100644
--- a/profiles/DerGeret/Windows/Drivers.ps1
+++ b/profiles/DerGeret/Windows/Drivers.ps1
@@ -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*");
 }
 
diff --git a/scripts/Windows/Software/LGHub/Manage.ps1 b/scripts/Windows/Software/LGHub/Manage.ps1
index 7f9b587d..0bc73574 100644
--- a/scripts/Windows/Software/LGHub/Manage.ps1
+++ b/scripts/Windows/Software/LGHub/Manage.ps1
@@ -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);