Sometimes with Dell devices I need to extract a lot of drivers exe files, so I worked on a PowerShell command to do it.
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 :