PortValhalla/profiles/DerGeret/Windows/Drivers.ps1

22 lines
745 B
PowerShell

#!/bin/pwsh
. "$PSScriptRoot/../../../scripts/Windows/Scripts/Context.ps1";
function Install-PortValhallaDrivers {
param(
[Context] $context
)
$driverPath = "$PSScriptRoot/../../../scripts/Windows/Drivers";
$mbDriverPath = "$driverPath/ROG Zenith Extreme Alpha";
. "$mbDriverPath/MarvellEthernet/Install.ps1" $context;
. "$mbDriverPath/IntelWiFi/Install.ps1" $context;
. "$mbDriverPath/AMDChipsetX399/Install.ps1" $context;
. "$mbDriverPath/IntelBluetooth/Install.ps1" $context;
. "$driverPath/AMDChipsetX399/Install.ps1" $context;
. "$driverPath/AMDThreadRipper2950X/Install.ps1" $context;
. "$driverPath/TobiiEyeX/Install.ps1" $context;
choco install -y geforce-game-ready-driver;
}