Install Multiple applications with cmd

Omar Osman 1 Reputation point
2020-11-10T11:52:11.687+00:00

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 for business | Windows Client for IT Pros | Devices and deployment | Set up, install, or upgrade
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Anonymous
    2020-11-11T03:26:39.96+00:00

    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.

    1 person found this answer helpful.
    0 comments No comments

  2. windows nerd 21 Reputation points
    2022-02-09T18:14:11.443+00:00

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

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.