Install display driver

This commit is contained in:
Manuel Thalmann 2023-07-18 12:22:58 +02:00
parent 5ba1b7bd1b
commit f1e9004623
2 changed files with 18 additions and 0 deletions

View file

@ -12,6 +12,7 @@ function Install-PortValhallaDrivers {
. "$mbDriverPath/MarvellEthernet/Install.ps1" $context;
. "$mbDriverPath/IntelWiFi/Install.ps1" $context;
. "$mbDriverPath/AMDChipsetX399/Install.ps1" $context;
. "$driverPath/Predator Z301C/Install.ps1" $context;
. "$mbDriverPath/IntelBluetooth/Install.ps1" $context;
. "$driverPath/AMDChipsetX399/Install.ps1" $context;
. "$driverPath/Tobii EyeX/Install.ps1" $context;

View file

@ -0,0 +1,17 @@
#!/bin/pwsh
param($context)
. "$PSScriptRoot/../../Scripts/Context.ps1";
[Context]$context = $context;
$tempDir = $context.GetTempDirectory();
$fileName = "driver.zip";
Push-Location $tempDir;
Invoke-WebRequest "https://global-download.acer.com/GDFiles/Driver/Monitor/Monitor_Acer_1.0_W7x86W7x64W8x86W8x64_A.zip?acerid=636092441703392074" -OutFile $fileName;
Expand-Archive $fileName;
Start-Process -Wait -FilePath "pnputil" -ArgumentList ([string[]]@("/add-driver", "*.inf", "/install", "/subdirs"));
Pop-Location;
Remove-Item -Recurse $tempDir;