Add further asus drivers
This commit is contained in:
parent
dca1e2a4e7
commit
f6bc1a624b
5 changed files with 20 additions and 2 deletions
|
@ -6,5 +6,11 @@ function Install-PortValhallaDrivers {
|
|||
[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;
|
||||
}
|
||||
|
|
|
@ -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";
|
|
@ -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";
|
|
@ -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";
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/pwsh
|
||||
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";
|
Loading…
Reference in a new issue