Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save The-Running-Dev/312f38ae0f0712000970d077b3213b51 to your computer and use it in GitHub Desktop.
Save The-Running-Dev/312f38ae0f0712000970d077b3213b51 to your computer and use it in GitHub Desktop.
# Install Chocolatey if you don't already have it
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex
# Optional: Set chocolatey configuration
# choco config set commandExecutionTimeoutSeconds 14400
# choco feature enable -n allowGlobalConfirmation
# choco feature enable -n allowEmptyChecksums
# Optional: Get the list of available packages on the AsRock X99 driver feed
# choco list -s https://www.myget.org/F/asrockx99/api/v2
# Should Return something like:
# Driver.AsmediaUSB 1.16.35.1
# Driver.INF 10.1.2.10
# Driver.IntelBluetooth 18.1.1910
# Driver.IntelManagementEngine 11.0.4.1186
# Driver.IntelRapidStorage 14.8.0.1042
# Driver.IntelTurboBoostMax 1.0.0.1027
# Driver.IntelWirelessLan 18.33.0.2
# Driver.RealtekHighDefinitionAudio 6.0.1.7874
# Optional: Add the source to your local configuraiton
# choco source add -n=Chocolatey -s https://www.myget.org/F/asrockx99/api/v2
# To install individual driver
choco install Driver.AsmediaUSB -s https://www.myget.org/F/asrockx99/api/v2
# To install individual driver if you already added the source to your config
# choco install Driver.AsmediaUSB
# To install all drivers
choco list -s https://www.myget.org/F/asrockx99/api/v2 | Where-Object { $_ -notmatch 'chocolatey' } | ForEach { choco install $_.split(' ')[0] }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment