Install display driver
This commit is contained in:
parent
860cb3353b
commit
301c724525
2 changed files with 18 additions and 0 deletions
scripts/Windows/Drivers/Predator Z301C
17
scripts/Windows/Drivers/Predator Z301C/Install.ps1
Normal file
17
scripts/Windows/Drivers/Predator Z301C/Install.ps1
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue