I would like to use Powershell script to update a bunch of Dell Drivers (ranging from Graphics, Bios, Controllers etc), but it hasnt been successful. The exit code returned was 10. Anyone able to help a friend out? 🙂
$installers = get-childitem -Filter “*.exe”
foreach($file in $installers)
{
your text
Start-Process -Wait -FilePath ($file.FullName) -ArgumentList ‘/silent’ -PassThru
}
New contributor
Keith Chan Yong Kit is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.