Occasionally, when working with Dell devices, it's necessary to extract multiple driver executable. This PowerShell command automate the process.
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 :