PortValhalla/profiles/DerGeret/Windows/Drivers.ps1

21 lines
713 B
PowerShell
Raw Normal View History

2023-07-15 09:35:07 +00:00
#!/bin/pwsh
. "$PSScriptRoot/../../../scripts/Windows/Scripts/Context.ps1";
function Install-PortValhallaDrivers {
param(
[Context] $context
)
2023-07-15 09:53:45 +00:00
$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;
2023-07-15 19:37:52 +00:00
. "$driverPath/TobiiEyeX/Install.ps1" $context;
2023-07-15 23:29:17 +00:00
choco install -y amd-ryzen-master geforce-game-ready-driver icue wavelink;
2023-07-15 09:35:07 +00:00
}