automate installations / script Installations

preview_player
Показать описание
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
Рекомендации по теме
Комментарии
Автор

Hi sir please reply, I need your help to writing one powershall script. Please help me, we have one CSv file in that file we have user names, company names and state.by default all users having same state, even though they are from different states, so from the company name we can able to sort out the user state. So we need a script for that. Here input as user name and output as company name. I request you to Please help me in this.

Divyasivaram
Автор

How to silently install with parameters? In windows with next button there are plenty of parameters, some parameters I want to change. And install with changed parameters silently

Johny_Watson
Автор

did not try yet but would it keep prompting for elevated access on user account with each app or just the first one?

MrEfler
visit shbcf.ru