question

OmarOsman-8544 avatar image
0 Votes"
OmarOsman-8544 asked windownerd-3703 answered

Install Multiple applications with cmd

Multiple applications installation via cmd

is there a way i can install multiple applications via cmd. i already have the silent scripts for the applications.
Source for the applications : USB
Destination : any computer

the script should be like the way the task sequence works,

thanks

windows-10-application-compatibility
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

IanXue-MSFT avatar image
1 Vote"
IanXue-MSFT answered IanXue-MSFT edited

Hi,

Since you already have the installation scripts you only need to call them in your script like this

 @echo off
 call D:\scripts\app1.bat
 call D:\scripts\app2.bat
 call D:\scripts\app3.bat

Best Regards,
Ian
============================================
If the Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

windownerd-3703 avatar image
0 Votes"
windownerd-3703 answered

@echo off
call D:\scripts\app1.bat && call D:\scripts\app2.bat && call D:\scripts\app3.bat
pause

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.