21 lines
761 B
PowerShell
21 lines
761 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/Tobii EyeX/Install.ps1" $context;
|
|
|
|
choco install -y amd-ryzen-master geforce-game-ready-driver icue wavelink;
|
|
$context.RemoveDesktopIcon("*Wave Link*");
|
|
}
|