Silently installing NVIDIA GPU Display Driver
August 18, 2022•153 words
473.81-quadro-rtx-desktop-notebook-win10-win11-64bit-international-dch-whql.exe
- First stage installer uses 7zSFX, so a lot of those command-line arguments are applicable (except, unhelpfully,
-h
). See https://olegscherbakov.github.io/7zSFX/ (although this is annoyingly formatted). - Second stage installer uses InstallShield IIRC. See: https://docs.revenera.com/installshield24helplib/helplibrary/IHelpSetup_EXECmdLine.htm
Silent Installation
$InstallerArguments = @(
"-InstallPath=`"`"" # First-stage installer: Override the default installer extraction path with an empty value. This causes 7zSFX to create its own temporary directory.
"-Delete=`"`"" # First-stage installer: Override the default installer extraction path to be deleted with an empty value.
"-gm2" # First-stage installer: Do not display GUI.
"-y" # First-stage installer: Do not prompt for confirmation.
"-!" # First-stage installer: Indicate the end of 7zSFX parameters. All remaining parameters are passed to the second-stage installer.
"/noeula" # Second-stage installer: Do not display EULA prompt.
"/passive" # Second-stage installer: Passive
"/noreboot" # Second-stage installer: No reboot
"/s" # Second-stage installer: Silent
)
Start-Process -FilePath "473.81-quadro-rtx-desktop-notebook-win10-win11-64bit-international-dch-whql.exe" -ArgumentList $InstallerArguments -Wait