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 10 Compatibility
Windows 10 Compatibility
Windows 10: A Microsoft operating system that runs on personal computers and tablets.Compatibility: The extent to which hardware or software adheres to an accepted standard.
464 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Ian Xue (Shanghai Wicresoft Co., Ltd.) 33,376 Reputation points Microsoft Vendor
    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