Sometimes, with my Dell devices, I need to extract a large number of driver .exe files, so I've been working on a PowerShell command to do this.
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 }
Contact :