Add further asus drivers

This commit is contained in:
Manuel Thalmann 2023-07-15 11:53:45 +02:00
parent b358ea11e4
commit bf1129c9c4
5 changed files with 20 additions and 2 deletions

View file

@ -6,5 +6,11 @@ function Install-PortValhallaDrivers {
[Context] $context [Context] $context
) )
. "$PSScriptRoot/../../../scripts/Windows/Drivers/MarvellEthernet/Install.ps1" $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;
} }

View file

@ -0,0 +1,4 @@
#!/bin/pwsh
param([Context] $context)
. "$PSScriptRoot/../../../Scripts/AsusSoftwarePackage.ps1";
Install-AsusSoftwarePackage $context "https://dlcdnets.asus.com/pub/ASUS/mb/03CHIPSET/DRV_Chipset_AMD_TRX40_TP_TSD_W10_64_V30901140_20211006R.zip?model=ROG%20ZENITH%20EXTREME%20ALPHA";

View file

@ -0,0 +1,4 @@
#!/bin/pwsh
param([Context] $context)
. "$PSScriptRoot/../../../Scripts/AsusSoftwarePackage.ps1";
Install-AsusSoftwarePackage $context "https://dlcdnets.asus.com/pub/ASUS/mb/02BT/DRV_Bluetooth_Intel_9260_TP_W11_64_V2210002_20211222R.zip?model=ROG%20ZENITH%20EXTREME%20ALPHA";

View file

@ -0,0 +1,4 @@
#!/bin/pwsh
param([Context] $context)
. "$PSScriptRoot/../../../Scripts/AsusSoftwarePackage.ps1";
Install-AsusSoftwarePackage $context "https://dlcdnets.asus.com/pub/ASUS/mb/08WIRELESS/DRV_WiFi_Intel_TP_W11_64_V2219004_20230130R.zip?model=ROG%20ZENITH%20EXTREME%20ALPHA";

View file

@ -1,4 +1,4 @@
#!/bin/pwsh #!/bin/pwsh
param([Context] $context) param([Context] $context)
. "$PSScriptRoot/../../Scripts/AsusSoftwarePackage.ps1"; . "$PSScriptRoot/../../../Scripts/AsusSoftwarePackage.ps1";
Install-AsusSoftwarePackage $context "https://dlcdnets.asus.com/pub/ASUS/mb/04LAN/DRV_LAN_Marvell_TP_TSD_W11_64_V3130_20211118R.zip?model=ROG%20ZENITH%20EXTREME%20ALPHA"; Install-AsusSoftwarePackage $context "https://dlcdnets.asus.com/pub/ASUS/mb/04LAN/DRV_LAN_Marvell_TP_TSD_W11_64_V3130_20211118R.zip?model=ROG%20ZENITH%20EXTREME%20ALPHA";