rss logo

Automatically Extract Dell Driver Executables with PowerShell

Intro

Dell logo PowerShell logo

Occasionally, when working with Dell devices, it's necessary to extract multiple driver executable. This PowerShell command automate the process.

Command

Folder C:\TEMP containing multiple Dell and Intel driver executable files before PowerShell extraction
PS C:\Users\Administrator> cd C:\TEMP\
PS C:\TEMP> foreach ($app in $(Get-ChildItem | ? { $_.Name -match "exe" })) { Start-Process -FilePath "C:\TEMP\$($app.Name)" -ArgumentList "/s /e=C:\TEMP\_$($app.Name)" -Wait }
Folder C:\TEMP showing extracted folders and original Dell driver executable files after PowerShell script execution