simple script I created that you can copy to any folder and run as admin to silently Install everything in that folder.
Here's the script, made to run locally (not over network) simply copy all the text below and paste it into notepad, then save as InstallitALL.bat:
@ECHO OFF
:: set batch file script path as default working path
CD /d %~dp0
ECHO =================================================================================
ECHO Installing Everything in current folder...
:: The following command executes all files in folders and subfolders silently, one at a time and in order
FOR /r "." %%a in (*.exe) do "%%~fa" -s
ECHO Complete.
ECHO Remember to reboot if needed
ECHO Monitor Task Manager Processes to ensure installations complete
TIMEOUT 120
::If the -s switch at the end doesn't work for you, change it to others that are supported, such as:
::/silent
::/quiet
::/s
::/unattended